Skip to content

Commit

Permalink
Refactor Dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
shashankrnr32 committed Apr 16, 2023
1 parent bdcbe2f commit 79b17cd
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@
<apache.commons.lang3.version>3.12.0</apache.commons.lang3.version>
<apache.commons.collection.version>3.2.2</apache.commons.collection.version>
<spring.data.mongodb.version>3.3.10</spring.data.mongodb.version>
<mongodb.driver.executable.version>4.8.2</mongodb.driver.executable.version>
<mongodb.driver.version>4.8.2</mongodb.driver.version>
<reactor.core.version>3.5.4</reactor.core.version>
<mongodb.driver.reactive.version>4.8.2</mongodb.driver.reactive.version>
<mockito.inline.version>3.12.4</mockito.inline.version>
<log4j2.version>2.17.2</log4j2.version>

</properties>

Expand Down
4 changes: 2 additions & 2 deletions sharding-driver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-driver-sync</artifactId>
<version>${mongodb.driver.executable.version}</version>
<version>${mongodb.driver.version}</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-driver-reactivestreams</artifactId>
<version>${mongodb.driver.reactive.version}</version>
<version>${mongodb.driver.version}</version>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
Expand Down
14 changes: 7 additions & 7 deletions sharding-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,41 +36,41 @@
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-driver-sync</artifactId>
<version>${mongodb.driver.executable.version}</version>
<version>${mongodb.driver.version}</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-driver-reactivestreams</artifactId>
<version>${mongodb.driver.reactive.version}</version>
<version>${mongodb.driver.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.mongodb/mongodb-driver-core -->
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-driver-core</artifactId>
<version>4.8.2</version>
<version>${mongodb.driver.version}</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>bson</artifactId>
<version>4.8.2</version>
<version>${mongodb.driver.version}</version>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.15.0</version>
<version>${log4j2.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.15.0</version>
<version>${log4j2.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>2.15.0</version>
<version>${log4j2.version}</version>
<scope>test</scope>
</dependency>

Expand Down

0 comments on commit 79b17cd

Please sign in to comment.