diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2018-07-17 14:56:31 -0400 |
---|---|---|
committer | Pamela Dragosh <pdragosh@research.att.com> | 2018-07-17 14:56:42 -0400 |
commit | 9bfa1d61dc77973f85a42174b199d4c744265521 (patch) | |
tree | 54bec8b853b2152fe3e565aef196c3ae8ac1d0be | |
parent | 3555353c1baedc080f310e9e737a46f7cc7aa89e (diff) |
Upgrade tomcat to clear security issues
New security issue has appeared, so we will do minor upgrade.
Issue-ID: POLICY-982
Change-Id: I58ee20ec07300ab586017ca2072f63329e6f3417
Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
-rwxr-xr-x | packages/base/pom.xml | 4 | ||||
-rw-r--r-- | packages/docker/src/main/docker/docker-install.sh | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/packages/base/pom.xml b/packages/base/pom.xml index 8a809fe2b..56ff5f596 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.50</version> + <version>8.0.53</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.50.tar.gz</destFileName> + <destFileName>apache-tomcat-8.0.53.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 7521f6064..09cba6e96 100644 --- a/packages/docker/src/main/docker/docker-install.sh +++ b/packages/docker/src/main/docker/docker-install.sh @@ -622,7 +622,7 @@ DEBUG=n BASE_CONF=base.conf -TOMCAT_PACKAGE_NAME=apache-tomcat-8.0.50 +TOMCAT_PACKAGE_NAME=apache-tomcat-8.0.53 INSTALL_DIR="$(pwd)" |