This is an automated email from the ASF dual-hosted git repository. nitiraj pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/ambari.git
The following commit(s) were added to refs/heads/trunk by this push: new a153e5e AMBARI-24783 : removed dependencies which are having security issues (nitirajrathore) (#2493) a153e5e is described below commit a153e5e5e3389846c8724a4a90dd21cc4f004316 Author: nitirajrathore <nitiraj.rath...@gmail.com> AuthorDate: Sun Oct 21 15:56:17 2018 +0530 AMBARI-24783 : removed dependencies which are having security issues (nitirajrathore) (#2493) --- contrib/views/commons/pom.xml | 10 ++++++++++ contrib/views/files/pom.xml | 10 ++++++++++ contrib/views/pig/pom.xml | 34 ++++++++++++++++++++++------------ contrib/views/utils/pom.xml | 25 +++++++++++++++++++++---- contrib/views/wfmanager/pom.xml | 14 +++++++++++--- 5 files changed, 74 insertions(+), 19 deletions(-) diff --git a/contrib/views/commons/pom.xml b/contrib/views/commons/pom.xml index d6066a8..db0c858 100644 --- a/contrib/views/commons/pom.xml +++ b/contrib/views/commons/pom.xml @@ -52,6 +52,11 @@ <groupId>tomcat</groupId> <artifactId>jasper-runtime</artifactId> </exclusion> + <!--removed for security bugs in version : 9.3.19.v20170502--> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-util</artifactId> + </exclusion> </exclusions> </dependency> @@ -70,6 +75,11 @@ <groupId>tomcat</groupId> <artifactId>jasper-runtime</artifactId> </exclusion> + <!--removed for security bugs in version : 9.3.19.v20170502--> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-util</artifactId> + </exclusion> </exclusions> </dependency> diff --git a/contrib/views/files/pom.xml b/contrib/views/files/pom.xml index 35b972a..82883bb 100644 --- a/contrib/views/files/pom.xml +++ b/contrib/views/files/pom.xml @@ -58,6 +58,11 @@ <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </exclusion> + <!--removed for security bugs in version : 9.3.19.v20170502--> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-util</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -73,6 +78,11 @@ <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </exclusion> + <!--removed for security bugs in version : 9.3.19.v20170502--> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-util</artifactId> + </exclusion> </exclusions> </dependency> <dependency> diff --git a/contrib/views/pig/pom.xml b/contrib/views/pig/pom.xml index 5aa7524..c8f3027 100644 --- a/contrib/views/pig/pom.xml +++ b/contrib/views/pig/pom.xml @@ -89,23 +89,33 @@ <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-hdfs</artifactId> <version>${hadoop.version}</version> - <exclusions> - <exclusion> - <groupId>tomcat</groupId> - <artifactId>jasper-runtime</artifactId> - </exclusion> - </exclusions> + <exclusions> + <exclusion> + <groupId>tomcat</groupId> + <artifactId>jasper-runtime</artifactId> + </exclusion> + <!--removed for security bugs in version : 9.3.19.v20170502--> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-util</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-common</artifactId> <version>${hadoop.version}</version> - <exclusions> - <exclusion> - <groupId>tomcat</groupId> - <artifactId>jasper-runtime</artifactId> - </exclusion> - </exclusions> + <exclusions> + <exclusion> + <groupId>tomcat</groupId> + <artifactId>jasper-runtime</artifactId> + </exclusion> + <!--removed for security bugs in version : 9.3.19.v20170502--> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-util</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>javax.ws.rs</groupId> diff --git a/contrib/views/utils/pom.xml b/contrib/views/utils/pom.xml index 4d5127b..6efa9ae 100644 --- a/contrib/views/utils/pom.xml +++ b/contrib/views/utils/pom.xml @@ -59,6 +59,11 @@ <groupId>tomcat</groupId> <artifactId>jasper-runtime</artifactId> </exclusion> + <!--removed for security bugs in version : 9.3.19.v20170502--> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-util</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -66,10 +71,15 @@ <artifactId>hadoop-common</artifactId> <version>${hadoop.version}</version> <exclusions> - <exclusion> - <groupId>tomcat</groupId> - <artifactId>jasper-runtime</artifactId> - </exclusion> + <exclusion> + <groupId>tomcat</groupId> + <artifactId>jasper-runtime</artifactId> + </exclusion> + <!--removed for security bugs in version : 9.3.19.v20170502--> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-util</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -81,6 +91,13 @@ <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-yarn-common</artifactId> <version>${hadoop.version}</version> + <exclusions> + <!--removed for security bugs in version : 9.3.19.v20170502--> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-util</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>com.squareup.okhttp</groupId> diff --git a/contrib/views/wfmanager/pom.xml b/contrib/views/wfmanager/pom.xml index 954a49b..25ca4f4 100644 --- a/contrib/views/wfmanager/pom.xml +++ b/contrib/views/wfmanager/pom.xml @@ -89,6 +89,11 @@ <groupId>tomcat</groupId> <artifactId>jasper-runtime</artifactId> </exclusion> + <!--removed for security bugs in version : 9.3.19.v20170502--> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-util</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -100,10 +105,13 @@ <groupId>tomcat</groupId> <artifactId>jasper-runtime</artifactId> </exclusion> - </exclusions> + <!--removed for security bugs in version : 9.3.19.v20170502--> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-util</artifactId> + </exclusion> + </exclusions> </dependency> - - </dependencies> <properties> <uicode.dir>../</uicode.dir>