-
Notifications
You must be signed in to change notification settings - Fork 174
New issue
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
How can I add runner libraries #97
Comments
I'll have a look at the problem in the evening. |
I have good news for you:
project.ext {
grettyVersion = Externalized.getString('grettyVersion')
jetty7Version = Externalized.getString('jetty7Version')
jetty7ServletApi = Externalized.getString('jetty7ServletApi')
jetty7ServletApiVersion = Externalized.getString('jetty7ServletApiVersion')
jetty8Version = Externalized.getString('jetty8Version')
jetty8ServletApi = Externalized.getString('jetty8ServletApi')
jetty8ServletApiVersion = Externalized.getString('jetty8ServletApiVersion')
jetty9Version = Externalized.getString('jetty9Version')
jetty9ServletApi = Externalized.getString('jetty9ServletApi')
jetty9ServletApiVersion = Externalized.getString('jetty9ServletApiVersion')
tomcat7Version = Externalized.getString('tomcat7Version')
tomcat7ServletApi = Externalized.getString('tomcat7ServletApi')
tomcat7ServletApiVersion = Externalized.getString('tomcat7ServletApiVersion')
tomcat8Version = Externalized.getString('tomcat8Version')
tomcat8ServletApi = Externalized.getString('tomcat8ServletApi')
tomcat8ServletApiVersion = Externalized.getString('tomcat8ServletApiVersion')
} "Externalized" means that these properties are build-driven, rather than hardcoded. This should guarantee, that these properties are always up-to-date and correspond the exact versions used by Gretty itself. |
Does 1.1.5-SNAPSHOT solve the problem for you? |
I just tested the 1.1.5 snapshot For me everything works as expected, gretty configuration and jetty9Version. Thanks for the fast changes! |
My project needs support of the jetty continuation library. According to http://akhikhl.github.io/gretty-doc/Servlet-container-classpath.html I use the following:
This works fine when using
appRun
, but when usingbuildProduct
, the continuation jar file is not added to the runner directory.BTW: How can I say 'org.eclipse.jetty:jetty-continuation:[the same jetty version gretty is using]'?
The text was updated successfully, but these errors were encountered: