This is an automated email from the ASF dual-hosted git repository. madhan pushed a commit to branch atlas-2.5 in repository https://gitbox.apache.org/repos/asf/atlas.git
The following commit(s) were added to refs/heads/atlas-2.5 by this push: new e2d36ac9d ATLAS-4980: fix test setup failure in HBaseAtlasHookIT e2d36ac9d is described below commit e2d36ac9dc98b5db75cb3b599c1399729b42b290 Author: Madhan Neethiraj <mad...@apache.org> AuthorDate: Thu Jan 16 09:10:29 2025 -0800 ATLAS-4980: fix test setup failure in HBaseAtlasHookIT (cherry picked from commit 6d82ef5353e0b46590e8b87298ee6454cc32d1b2) --- 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 707a78d13..e8f7de66a 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 687cb8d41..37d6fcb08 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>