Skip to content

Commit fb09caf

Browse files
pom: Added develop dependencies to review #TASK-2095
1 parent 82c262a commit fb09caf

File tree

4 files changed

+37
-5
lines changed

4 files changed

+37
-5
lines changed

commons-datastore/commons-datastore-core/pom.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,15 @@
3333
</dependency>
3434

3535
<!--TODO Review -->
36-
36+
<dependency>
37+
<groupId>org.slf4j</groupId>
38+
<artifactId>slf4j-api</artifactId>
39+
</dependency>
40+
<dependency>
41+
<groupId>org.slf4j</groupId>
42+
<artifactId>slf4j-simple</artifactId>
43+
<scope>test</scope>
44+
</dependency>
3745

3846
</dependencies>
3947

commons-datastore/commons-datastore-mongodb/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,11 @@
5858
<scope>test</scope>
5959
</dependency>
6060
<!--TODO Review -->
61-
61+
<dependency>
62+
<groupId>org.slf4j</groupId>
63+
<artifactId>slf4j-simple</artifactId>
64+
<scope>test</scope>
65+
</dependency>
6266
</dependencies>
6367

6468
</project>

commons-datastore/pom.xml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,17 @@
1818
<module>commons-datastore-mongodb</module>
1919
<module>commons-datastore-solr</module>
2020
</modules>
21-
21+
<dependencies>
22+
<!--TODO Review -->
23+
<dependency>
24+
<groupId>org.slf4j</groupId>
25+
<artifactId>slf4j-simple</artifactId>
26+
<scope>test</scope>
27+
</dependency>
28+
<dependency>
29+
<groupId>junit</groupId>
30+
<artifactId>junit</artifactId>
31+
<scope>test</scope>
32+
</dependency>
33+
</dependencies>
2234
</project>

commons-lib/pom.xml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,15 @@
5959
<scope>provided</scope>
6060
</dependency>
6161
<!--TODO Review -->
62-
62+
<dependency>
63+
<groupId>org.slf4j</groupId>
64+
<artifactId>slf4j-simple</artifactId>
65+
<scope>test</scope>
66+
</dependency>
67+
<dependency>
68+
<groupId>com.fasterxml.jackson.core</groupId>
69+
<artifactId>jackson-databind</artifactId>
70+
<scope>test</scope>
71+
</dependency>
6372
</dependencies>
64-
6573
</project>

0 commit comments

Comments
 (0)