This is an automated email from the ASF dual-hosted git repository.
madhan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git
The following commit(s) were added to refs/heads/master by this push:
new 6d82ef535 ATLAS-4980: fix test setup failure in HBaseAtlasHookIT
6d82ef535 is described below
commit 6d82ef5353e0b46590e8b87298ee6454cc32d1b2
Author: Madhan Neethiraj <[email protected]>
AuthorDate: Thu Jan 16 09:10:29 2025 -0800
ATLAS-4980: fix test setup failure in HBaseAtlasHookIT
---
addons/hbase-bridge/pom.xml | 20 ++++++++++++++++++++
addons/hbase-testing-util/pom.xml | 13 +++++++++++++
2 files changed, 33 insertions(+)
diff --git a/addons/hbase-bridge/pom.xml b/addons/hbase-bridge/pom.xml
index 80a787db1..22ee2c9a6 100644
--- a/addons/hbase-bridge/pom.xml
+++ b/addons/hbase-bridge/pom.xml
@@ -33,7 +33,9 @@
<description>Apache Atlas Hbase Bridge Module</description>
<properties>
+ <apache.log4j.version>2.17.1</apache.log4j.version>
<hadoop.version>3.0.3</hadoop.version>
+ <javax.ws.rs-api.version>2.1.1</javax.ws.rs-api.version>
<jetty.version>9.3.14.v20161028</jetty.version>
</properties>
@@ -208,6 +210,12 @@
<version>${jersey.version}</version>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>javax.ws.rs</groupId>
+ <artifactId>javax.ws.rs-api</artifactId>
+ <version>${javax.ws.rs-api.version}</version>
+ <scope>test</scope>
+ </dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
@@ -265,6 +273,18 @@
<type>test-jar</type>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-api</artifactId>
+ <version>${apache.log4j.version}</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-core</artifactId>
+ <version>${apache.log4j.version}</version>
+ <scope>test</scope>
+ </dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
diff --git a/addons/hbase-testing-util/pom.xml
b/addons/hbase-testing-util/pom.xml
index 05ed88401..649f8168b 100644
--- a/addons/hbase-testing-util/pom.xml
+++ b/addons/hbase-testing-util/pom.xml
@@ -33,6 +33,7 @@
<description>HBase Testing Utilities.</description>
<properties>
+ <apache.log4j.version>2.17.1</apache.log4j.version>
<hadoop.version>3.0.3</hadoop.version>
<jetty.version>9.3.14.v20161028</jetty.version>
</properties>
@@ -232,5 +233,17 @@
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
</dependency>
+ <dependency>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-api</artifactId>
+ <version>${apache.log4j.version}</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-core</artifactId>
+ <version>${apache.log4j.version}</version>
+ <scope>runtime</scope>
+ </dependency>
</dependencies>
</project>