diff options
-rw-r--r-- | ONAP-SDK-APP/pom.xml | 4 | ||||
-rwxr-xr-x | packages/base/pom.xml | 4 | ||||
-rw-r--r-- | packages/docker/src/main/docker/docker-install.sh | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/ONAP-SDK-APP/pom.xml b/ONAP-SDK-APP/pom.xml index 060c0c513..6d782a308 100644 --- a/ONAP-SDK-APP/pom.xml +++ b/ONAP-SDK-APP/pom.xml @@ -38,8 +38,8 @@ <!-- Tests usually require some setup that maven cannot do, so skip. --> <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**,src/main/webapp/**/*</sonar.exclusions> <!-- Version number gets stored only here --> - <tomcat.download.path>http://archive.apache.org/dist/tomcat/tomcat-8/v8.0.37/bin</tomcat.download.path> - <tomcat.download.name>apache-tomcat-8.0.37</tomcat.download.name> + <tomcat.download.path>http://archive.apache.org/dist/tomcat/tomcat-8/v8.5.34/bin</tomcat.download.path> + <tomcat.download.name>apache-tomcat-8.5.34</tomcat.download.name> </properties> <profiles> <!-- disable doclint, a new feature in Java 8, when generating javadoc --> diff --git a/packages/base/pom.xml b/packages/base/pom.xml index 974f9eb34..fb95511d1 100755 --- a/packages/base/pom.xml +++ b/packages/base/pom.xml @@ -118,14 +118,14 @@ <artifactItem> <groupId>org.apache.tomcat</groupId> <artifactId>tomcat</artifactId> - <version>8.0.53</version> + <version>8.5.34</version> <type>tar.gz</type> <!-- Please note that if you change this version, you must update the docker-install.sh script to ensure the right file name is installed. --> - <destFileName>apache-tomcat-8.0.53.tar.gz</destFileName> + <destFileName>apache-tomcat-8.5.34.tar.gz</destFileName> </artifactItem> </artifactItems> </configuration> diff --git a/packages/docker/src/main/docker/docker-install.sh b/packages/docker/src/main/docker/docker-install.sh index 3700e5731..36cc8aa92 100644 --- a/packages/docker/src/main/docker/docker-install.sh +++ b/packages/docker/src/main/docker/docker-install.sh @@ -628,7 +628,7 @@ DEBUG=n BASE_CONF=base.conf -TOMCAT_PACKAGE_NAME=apache-tomcat-8.0.53 +TOMCAT_PACKAGE_NAME=apache-tomcat-8.5.34 INSTALL_DIR="$(pwd)" |