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 | |
parent | 88a6b34c4798f32c13de407aca57799a03ec8570 (diff) | |
download | pdf-as-4-9cbe202087a5bb0291b676c916426f0ba50229cc.tar.gz pdf-as-4-9cbe202087a5bb0291b676c916426f0ba50229cc.tar.bz2 pdf-as-4-9cbe202087a5bb0291b676c916426f0ba50229cc.zip |
Update gretty
-rw-r--r-- | pdf-as-web/build.gradle | 8 | ||||
-rw-r--r-- | pdf-as-web/gradle.properties | 3 |
2 files changed, 7 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' ] } diff --git a/pdf-as-web/gradle.properties b/pdf-as-web/gradle.properties new file mode 100644 index 00000000..887ae74e --- /dev/null +++ b/pdf-as-web/gradle.properties @@ -0,0 +1,3 @@ +jetty94Version = 9.4.44.v20210927 +jetty93Version = 9.3.30.v20211001 +jetty9Version = 9.2.30.v20200428
\ No newline at end of file |