Skip to content

Commit 6d82ef5

Browse files
committed
ATLAS-4980: fix test setup failure in HBaseAtlasHookIT
1 parent 54576d7 commit 6d82ef5

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

addons/hbase-bridge/pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@
3333
<description>Apache Atlas Hbase Bridge Module</description>
3434

3535
<properties>
36+
<apache.log4j.version>2.17.1</apache.log4j.version>
3637
<hadoop.version>3.0.3</hadoop.version>
38+
<javax.ws.rs-api.version>2.1.1</javax.ws.rs-api.version>
3739
<jetty.version>9.3.14.v20161028</jetty.version>
3840
</properties>
3941

@@ -208,6 +210,12 @@
208210
<version>${jersey.version}</version>
209211
<scope>test</scope>
210212
</dependency>
213+
<dependency>
214+
<groupId>javax.ws.rs</groupId>
215+
<artifactId>javax.ws.rs-api</artifactId>
216+
<version>${javax.ws.rs-api.version}</version>
217+
<scope>test</scope>
218+
</dependency>
211219
<dependency>
212220
<groupId>junit</groupId>
213221
<artifactId>junit</artifactId>
@@ -265,6 +273,18 @@
265273
<type>test-jar</type>
266274
<scope>test</scope>
267275
</dependency>
276+
<dependency>
277+
<groupId>org.apache.logging.log4j</groupId>
278+
<artifactId>log4j-api</artifactId>
279+
<version>${apache.log4j.version}</version>
280+
<scope>test</scope>
281+
</dependency>
282+
<dependency>
283+
<groupId>org.apache.logging.log4j</groupId>
284+
<artifactId>log4j-core</artifactId>
285+
<version>${apache.log4j.version}</version>
286+
<scope>test</scope>
287+
</dependency>
268288
<dependency>
269289
<groupId>org.eclipse.jetty</groupId>
270290
<artifactId>jetty-server</artifactId>

addons/hbase-testing-util/pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
<description>HBase Testing Utilities.</description>
3434

3535
<properties>
36+
<apache.log4j.version>2.17.1</apache.log4j.version>
3637
<hadoop.version>3.0.3</hadoop.version>
3738
<jetty.version>9.3.14.v20161028</jetty.version>
3839
</properties>
@@ -232,5 +233,17 @@
232233
<groupId>org.testng</groupId>
233234
<artifactId>testng</artifactId>
234235
</dependency>
236+
<dependency>
237+
<groupId>org.apache.logging.log4j</groupId>
238+
<artifactId>log4j-api</artifactId>
239+
<version>${apache.log4j.version}</version>
240+
<scope>runtime</scope>
241+
</dependency>
242+
<dependency>
243+
<groupId>org.apache.logging.log4j</groupId>
244+
<artifactId>log4j-core</artifactId>
245+
<version>${apache.log4j.version}</version>
246+
<scope>runtime</scope>
247+
</dependency>
235248
</dependencies>
236249
</project>

0 commit comments

Comments
 (0)