This is an automated email from the ASF dual-hosted git repository.
veithen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git
The following commit(s) were added to refs/heads/master by this push:
new 19b7252 Centrally manage the Jetty version
19b7252 is described below
commit 19b7252c5f7bd7c559c63aee06e8a74e39400fe2
Author: Andreas Veithen <[email protected]>
AuthorDate: Sat Jan 23 13:28:43 2021 +0000
Centrally manage the Jetty version
---
modules/webapp/pom.xml | 1 -
pom.xml | 7 ++++++-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/modules/webapp/pom.xml b/modules/webapp/pom.xml
index 0a37a81..07d7982 100644
--- a/modules/webapp/pom.xml
+++ b/modules/webapp/pom.xml
@@ -285,7 +285,6 @@
<!-- Compile the JSPs so that syntax errors are detected
during the build. -->
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jspc-maven-plugin</artifactId>
- <version>9.4.35.v20201120</version>
<executions>
<execution>
<goals>
diff --git a/pom.xml b/pom.xml
index 12221d4..24be39a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1235,7 +1235,12 @@
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
- <version>9.4.35.v20201120</version>
+ <version>${jetty.version}</version>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.jetty</groupId>
+ <artifactId>jetty-jspc-maven-plugin</artifactId>
+ <version>${jetty.version}</version>
</plugin>
<plugin>
<groupId>com.github.veithen.daemon</groupId>