We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
jetty-10
Use the same pom.xml code as in jetty-11 to convert a version that may include SNAPSHOT into an osgi-acceptable form:
pom.xml
version
SNAPSHOT
<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>set-jsp-api-version</id> <phase>validate</phase> <goals> <goal>parse-version</goal> </goals> <configuration> <versionString>${jsp.impl.version}</versionString> <propertyPrefix>jspImpl</propertyPrefix> </configuration> </execution> </executions> </plugin>
The text was updated successfully, but these errors were encountered:
Issue #7632 Make osgi build work with snapshot jsp jars
be18af8
Signed-off-by: Jan Bartel <[email protected]>
Issue #7632 Make osgi build work with snapshot jsp jars (#7633)
808b74f
janbartel
Successfully merging a pull request may close this issue.
jetty-10
Use the same
pom.xml
code as in jetty-11 to convert aversion
that may includeSNAPSHOT
into an osgi-acceptable form:The text was updated successfully, but these errors were encountered: