Skip to content

Commit 6d76609

Browse files
committed
Fixed dependencies
1 parent fef9046 commit 6d76609

File tree

3 files changed

+25
-31
lines changed

3 files changed

+25
-31
lines changed

config-vault/pom.xml

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
35
<modelVersion>4.0.0</modelVersion>
46

57
<parent>
@@ -11,7 +13,6 @@
1113
<artifactId>config-vault</artifactId>
1214

1315
<properties>
14-
<log4j.version>2.13.3</log4j.version>
1516
<vault-java-driver.version>5.1.0</vault-java-driver.version>
1617
<testcontainers.version>1.15.2</testcontainers.version>
1718
</properties>
@@ -33,17 +34,5 @@
3334
<version>${testcontainers.version}</version>
3435
<scope>test</scope>
3536
</dependency>
36-
<dependency>
37-
<groupId>org.apache.logging.log4j</groupId>
38-
<artifactId>log4j-slf4j-impl</artifactId>
39-
<version>${log4j.version}</version>
40-
<scope>test</scope>
41-
</dependency>
42-
<dependency>
43-
<groupId>org.apache.logging.log4j</groupId>
44-
<artifactId>log4j-core</artifactId>
45-
<version>${log4j.version}</version>
46-
<scope>test</scope>
47-
</dependency>
4837
</dependencies>
4938
</project>

config/pom.xml

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
35

46
<parent>
57
<groupId>io.scalecube</groupId>
@@ -21,18 +23,6 @@
2123
</dependency>
2224

2325
<!-- Test dependencies -->
24-
<dependency>
25-
<groupId>org.apache.logging.log4j</groupId>
26-
<artifactId>log4j-slf4j-impl</artifactId>
27-
<version>${log4j.version}</version>
28-
<scope>test</scope>
29-
</dependency>
30-
<dependency>
31-
<groupId>org.apache.logging.log4j</groupId>
32-
<artifactId>log4j-core</artifactId>
33-
<version>${log4j.version}</version>
34-
<scope>test</scope>
35-
</dependency>
3626
<dependency>
3727
<groupId>com.fasterxml.jackson.datatype</groupId>
3828
<artifactId>jackson-datatype-jdk8</artifactId>

pom.xml

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
35
<modelVersion>4.0.0</modelVersion>
46

57
<parent>
@@ -50,6 +52,7 @@
5052
<jersey.version>2.26-b09</jersey.version>
5153
<commons-io.version>2.6</commons-io.version>
5254

55+
<log4j.version>2.13.3</log4j.version>
5356
<mockito-junit-jupiter.version>2.27.0</mockito-junit-jupiter.version>
5457
<junit-jupiter.version>5.1.1</junit-jupiter.version>
5558
<hamcrest.version>1.3</hamcrest.version>
@@ -109,6 +112,12 @@
109112
<artifactId>commons-io</artifactId>
110113
<version>${commons-io.version}</version>
111114
</dependency>
115+
<dependency>
116+
<groupId>net.java.dev.jna</groupId>
117+
<artifactId>jna</artifactId>
118+
<version>${jna.version}</version>
119+
<scope>test</scope>
120+
</dependency>
112121
</dependencies>
113122
</dependencyManagement>
114123

@@ -145,9 +154,15 @@
145154
<scope>test</scope>
146155
</dependency>
147156
<dependency>
148-
<groupId>net.java.dev.jna</groupId>
149-
<artifactId>jna</artifactId>
150-
<version>${jna.version}</version>
157+
<groupId>org.apache.logging.log4j</groupId>
158+
<artifactId>log4j-slf4j-impl</artifactId>
159+
<version>${log4j.version}</version>
160+
<scope>test</scope>
161+
</dependency>
162+
<dependency>
163+
<groupId>org.apache.logging.log4j</groupId>
164+
<artifactId>log4j-core</artifactId>
165+
<version>${log4j.version}</version>
151166
<scope>test</scope>
152167
</dependency>
153168
</dependencies>

0 commit comments

Comments
 (0)