diff options
author | Gerald Palfinger <gerald.palfinger@iaik.tugraz.at> | 2021-12-13 15:35:46 +0100 |
---|---|---|
committer | Gerald Palfinger <gerald.palfinger@iaik.tugraz.at> | 2022-01-20 14:54:26 +0100 |
commit | 9cbe202087a5bb0291b676c916426f0ba50229cc (patch) | |
tree | 394186dd38af448650c194b3425b5ae64b035fe0 /pdf-as-web/build.gradle | |
parent | 88a6b34c4798f32c13de407aca57799a03ec8570 (diff) | |
download | pdf-as-4-9cbe202087a5bb0291b676c916426f0ba50229cc.tar.gz pdf-as-4-9cbe202087a5bb0291b676c916426f0ba50229cc.tar.bz2 pdf-as-4-9cbe202087a5bb0291b676c916426f0ba50229cc.zip |
Update gretty
Diffstat (limited to 'pdf-as-web/build.gradle')
-rw-r--r-- | pdf-as-web/build.gradle | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pdf-as-web/build.gradle b/pdf-as-web/build.gradle index 4ba67e18..efcb263e 100644 --- a/pdf-as-web/build.gradle +++ b/pdf-as-web/build.gradle @@ -3,7 +3,7 @@ apply plugin: 'eclipse' apply plugin: 'eclipse-wtp' apply plugin: 'war' -apply plugin: 'org.akhikhl.gretty' +apply plugin: 'org.gretty' buildscript { repositories { @@ -16,7 +16,7 @@ buildscript { } dependencies { - classpath 'org.akhikhl.gretty:gretty:+' + classpath 'org.gretty:gretty:3.0.7' } } @@ -72,8 +72,8 @@ dependencies { gretty { // supported values: - // 'jetty7', 'jetty8', 'jetty9', 'tomcat7', 'tomcat8' - servletContainer = 'jetty9' + // 'jetty7', 'jetty8', 'jetty9', 'jetty9.3', 'jetty9.4', 'tomcat8.5', 'tomcat9' + servletContainer = 'jetty9.4' jvmArgs = [ '-Dpdf-as-web.conf=' + System.getProperty("user.home") + '/.pdfas/pdf-as-web.properties' ] } |