You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ol...@apache.org on 2018/04/25 09:51:29 UTC

[ambari] branch trunk updated: AMBARI-23677. Fix CVE issues for ambari-logsearch 2.7.0 (#1083)

This is an automated email from the ASF dual-hosted git repository.

oleewere 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 f34c285  AMBARI-23677. Fix CVE issues for ambari-logsearch 2.7.0 (#1083)
f34c285 is described below

commit f34c285755419d1b93ee5959299b3babdd45eb09
Author: Olivér Szabó <ol...@gmail.com>
AuthorDate: Wed Apr 25 11:51:24 2018 +0200

    AMBARI-23677. Fix CVE issues for ambari-logsearch 2.7.0 (#1083)
---
 ambari-logsearch/ambari-logsearch-config-zookeeper/pom.xml |  1 -
 ambari-logsearch/ambari-logsearch-logfeeder/pom.xml        |  2 +-
 ambari-logsearch/pom.xml                                   | 11 +++++++++++
 3 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/ambari-logsearch/ambari-logsearch-config-zookeeper/pom.xml b/ambari-logsearch/ambari-logsearch-config-zookeeper/pom.xml
index c6eb415..145b17e 100644
--- a/ambari-logsearch/ambari-logsearch-config-zookeeper/pom.xml
+++ b/ambari-logsearch/ambari-logsearch-config-zookeeper/pom.xml
@@ -53,7 +53,6 @@
     <dependency>
       <groupId>org.apache.zookeeper</groupId>
       <artifactId>zookeeper</artifactId>
-      <version>3.4.9</version>
     </dependency>
     <dependency>
       <groupId>org.apache.curator</groupId>
diff --git a/ambari-logsearch/ambari-logsearch-logfeeder/pom.xml b/ambari-logsearch/ambari-logsearch-logfeeder/pom.xml
index 688c944..cd68100 100644
--- a/ambari-logsearch/ambari-logsearch-logfeeder/pom.xml
+++ b/ambari-logsearch/ambari-logsearch-logfeeder/pom.xml
@@ -218,7 +218,7 @@
     <dependency>
       <groupId>org.apache.ant</groupId>
       <artifactId>ant</artifactId>
-      <version>1.7.1</version>
+      <version>1.10.3</version>
     </dependency>
     <!-- Exclude jars globally-->
     <dependency>
diff --git a/ambari-logsearch/pom.xml b/ambari-logsearch/pom.xml
index e5dc83d..d03d290 100644
--- a/ambari-logsearch/pom.xml
+++ b/ambari-logsearch/pom.xml
@@ -44,6 +44,7 @@
     <solr.version>7.3.0</solr.version>
     <hadoop.version>3.0.0</hadoop.version>
     <common.io.version>2.5</common.io.version>
+    <zookeeper.version>3.4.6.2.3.0.0-2557</zookeeper.version>
     <forkCount>4</forkCount>
     <reuseForks>false</reuseForks>
     <surefire.argLine>-Xmx1024m -Xms512m</surefire.argLine>
@@ -51,6 +52,11 @@
   </properties>
   <repositories>
     <repository>
+      <id>apache-hadoop</id>
+      <name>hdp</name>
+      <url>http://repo.hortonworks.com/content/groups/public/</url>
+    </repository>
+    <repository>
       <id>oss.sonatype.org</id>
       <name>OSS Sonatype Staging</name>
       <url>https://oss.sonatype.org/content/groups/staging</url>
@@ -279,6 +285,11 @@
         <artifactId>netty</artifactId>
         <version>3.10.5.Final</version>
       </dependency>
+      <dependency>
+        <groupId>org.apache.zookeeper</groupId>
+        <artifactId>zookeeper</artifactId>
+        <version>${zookeeper.version}</version>
+      </dependency>
     </dependencies>
   </dependencyManagement>
 

-- 
To stop receiving notification emails like this one, please contact
oleewere@apache.org.