Skip to content

Commit

Permalink
pom: Added develop dependencies to review #TASK-2095
Browse files Browse the repository at this point in the history
  • Loading branch information
juanfeSanahuja committed Oct 19, 2023
1 parent 82c262a commit fb09caf
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 5 deletions.
10 changes: 9 additions & 1 deletion commons-datastore/commons-datastore-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,15 @@
</dependency>

<!--TODO Review -->

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>

</dependencies>

Expand Down
6 changes: 5 additions & 1 deletion commons-datastore/commons-datastore-mongodb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,11 @@
<scope>test</scope>
</dependency>
<!--TODO Review -->

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

</project>
14 changes: 13 additions & 1 deletion commons-datastore/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,17 @@
<module>commons-datastore-mongodb</module>
<module>commons-datastore-solr</module>
</modules>

<dependencies>
<!--TODO Review -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
12 changes: 10 additions & 2 deletions commons-lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,15 @@
<scope>provided</scope>
</dependency>
<!--TODO Review -->

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

</project>

0 comments on commit fb09caf

Please sign in to comment.