Skip to content

Commit

Permalink
Merge pull request #2 from AndreiOla/fix/updateOSSLibsCont
Browse files Browse the repository at this point in the history
Updated more OSS libs and changed to version 1.4.7
  • Loading branch information
morarucostel authored May 12, 2022
2 parents 956c0df + 734ab3e commit c44c95a
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion distributed-lock-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>com.github.alturkovic</groupId>
<artifactId>distributed-lock</artifactId>
<version>1.4.2</version>
<version>1.4.7</version>
</parent>

<artifactId>distributed-lock-api</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion distributed-lock-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>com.github.alturkovic</groupId>
<artifactId>distributed-lock</artifactId>
<version>1.4.2</version>
<version>1.4.7</version>
</parent>

<artifactId>distributed-lock-core</artifactId>
Expand Down
3 changes: 2 additions & 1 deletion distributed-lock-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>com.github.alturkovic</groupId>
<artifactId>distributed-lock</artifactId>
<version>1.4.2</version>
<version>1.4.7</version>
</parent>

<artifactId>distributed-lock-example</artifactId>
Expand All @@ -30,6 +30,7 @@
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.1.212</version>
</dependency>
</dependencies>
</project>
3 changes: 2 additions & 1 deletion distributed-lock-jdbc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>com.github.alturkovic</groupId>
<artifactId>distributed-lock</artifactId>
<version>1.4.2</version>
<version>1.4.7</version>
</parent>

<artifactId>distributed-lock-jdbc</artifactId>
Expand All @@ -31,6 +31,7 @@
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.1.212</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
3 changes: 2 additions & 1 deletion distributed-lock-mongo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>com.github.alturkovic</groupId>
<artifactId>distributed-lock</artifactId>
<version>1.4.2</version>
<version>1.4.7</version>
</parent>

<artifactId>distributed-lock-mongo</artifactId>
Expand All @@ -31,6 +31,7 @@
<dependency>
<groupId>de.flapdoodle.embed</groupId>
<artifactId>de.flapdoodle.embed.mongo</artifactId>
<version>3.4.5</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,12 @@
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.test.autoconfigure.data.mongo.DataMongoTest;
import org.springframework.data.mongodb.core.MongoTemplate;
import org.springframework.test.context.TestPropertySource;

import static org.assertj.core.api.Assertions.assertThat;

@DataMongoTest
@TestPropertySource(properties = "spring.mongodb.embedded.version=3.5.5")
public class SimpleMongoLockTest implements InitializingBean {

@Autowired
Expand Down
6 changes: 3 additions & 3 deletions distributed-lock-redis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>com.github.alturkovic</groupId>
<artifactId>distributed-lock</artifactId>
<version>1.4.2</version>
<version>1.4.7</version>
</parent>

<artifactId>distributed-lock-redis</artifactId>
Expand All @@ -31,13 +31,13 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bootstrap</artifactId>
<version>3.0.1</version>
<version>3.1.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.playtika.testcontainers</groupId>
<artifactId>embedded-redis</artifactId>
<version>2.0.3</version>
<version>2.0.20</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.github.alturkovic</groupId>
<artifactId>distributed-lock</artifactId>
<version>1.4.6</version>
<version>1.4.7</version>
<packaging>pom</packaging>

<name>distributed-lock</name>
Expand Down

0 comments on commit c44c95a

Please sign in to comment.