This is an automated email from the ASF dual-hosted git repository.
hapylestat pushed a commit to branch branch-2.6
in repository https://gitbox.apache.org/repos/asf/ambari.git
The following commit(s) were added to refs/heads/branch-2.6 by this push:
new c29f680 AMBARI-25246 Add module based dependency with custom version
for the excluded transitiend modules (dgrinenko) (#2931)
c29f680 is described below
commit c29f680ff9d4ca4b7b976d7fe97c6e9c9845fde0
Author: Dmytro Grinenko <[email protected]>
AuthorDate: Mon Apr 15 13:53:04 2019 +0300
AMBARI-25246 Add module based dependency with custom version for the
excluded transitiend modules (dgrinenko) (#2931)
---
ambari-logsearch/ambari-logsearch-solr-client/pom.xml | 4 ++++
ambari-metrics/ambari-metrics-hadoop-sink/pom.xml | 5 ++++-
ambari-metrics/ambari-metrics-storm-sink-legacy/pom.xml | 4 ++++
ambari-metrics/ambari-metrics-timelineservice/pom.xml | 10 ++++++++++
ambari-metrics/pom.xml | 10 ++++++++++
5 files changed, 32 insertions(+), 1 deletion(-)
diff --git a/ambari-logsearch/ambari-logsearch-solr-client/pom.xml
b/ambari-logsearch/ambari-logsearch-solr-client/pom.xml
index 2c320cc..648dc86 100644
--- a/ambari-logsearch/ambari-logsearch-solr-client/pom.xml
+++ b/ambari-logsearch/ambari-logsearch-solr-client/pom.xml
@@ -92,6 +92,10 @@
<version>3.4</version>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-databind</artifactId>
+ </dependency>
</dependencies>
<build>
diff --git a/ambari-metrics/ambari-metrics-hadoop-sink/pom.xml
b/ambari-metrics/ambari-metrics-hadoop-sink/pom.xml
index 721fb8a..41e71d7 100644
--- a/ambari-metrics/ambari-metrics-hadoop-sink/pom.xml
+++ b/ambari-metrics/ambari-metrics-hadoop-sink/pom.xml
@@ -206,6 +206,9 @@ limitations under the License.
<artifactId>powermock-module-junit4</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-core</artifactId>
+ </dependency>
</dependencies>
-
</project>
diff --git a/ambari-metrics/ambari-metrics-storm-sink-legacy/pom.xml
b/ambari-metrics/ambari-metrics-storm-sink-legacy/pom.xml
index 1e4b2fb..a4e8db9 100644
--- a/ambari-metrics/ambari-metrics-storm-sink-legacy/pom.xml
+++ b/ambari-metrics/ambari-metrics-storm-sink-legacy/pom.xml
@@ -177,6 +177,10 @@ limitations under the License.
</exclusions>
</dependency>
<dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-core</artifactId>
+ </dependency>
+ <dependency>
<groupId>org.apache.ambari</groupId>
<artifactId>ambari-metrics-common</artifactId>
<version>${project.version}</version>
diff --git a/ambari-metrics/ambari-metrics-timelineservice/pom.xml
b/ambari-metrics/ambari-metrics-timelineservice/pom.xml
index c7c1304..19e176b 100644
--- a/ambari-metrics/ambari-metrics-timelineservice/pom.xml
+++ b/ambari-metrics/ambari-metrics-timelineservice/pom.xml
@@ -388,6 +388,16 @@
</exclusions>
</dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-core</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-databind</artifactId>
+ </dependency>
+
<!-- 'mvn dependency:analyze' fails to detect use of this dependency -->
<dependency>
<groupId>org.apache.hadoop</groupId>
diff --git a/ambari-metrics/pom.xml b/ambari-metrics/pom.xml
index 545e212..f7c9ea3 100644
--- a/ambari-metrics/pom.xml
+++ b/ambari-metrics/pom.xml
@@ -135,6 +135,16 @@
<artifactId>commons-codec</artifactId>
<version>1.12</version>
</dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-core</artifactId>
+ <version>2.9.8</version>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-databind</artifactId>
+ <version>2.9.8</version>
+ </dependency>
</dependencies>
</dependencyManagement>
<build>