Skip to content

Commit 201f1aa

Browse files
julian-eggersFinn Egbers
authored and
Finn Egbers
committed
LIBS-431 - dependency updates (#7)
1 parent fc042b9 commit 201f1aa

File tree

2 files changed

+33
-10
lines changed

2 files changed

+33
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ springboot-testcontainer-mongodb
1111
<dependency>
1212
<groupId>com.avides.springboot.testcontainer</groupId>
1313
<artifactId>springboot-testcontainer-mongodb</artifactId>
14-
<version>0.1.0-RC6</version>
14+
<version>0.1.0-RC7</version>
1515
<scope>test</scope>
1616
</dependency>
1717
```

pom.xml

Lines changed: 32 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<name>springboot-testcontainer-mongodb</name>
66
<description>MongoDB test-container</description>
77
<url>https://github.com/springboot-testcontainer/springboot-testcontainer-mongodb</url>
8-
<version>0.1.0-RC6</version>
8+
<version>0.1.0-RC7</version>
99

1010
<properties>
1111
<!-- System -->
@@ -15,22 +15,24 @@
1515
<java.version>1.8</java.version>
1616
<!-- Testing -->
1717
<jacoco.version>0.8.2</jacoco.version>
18-
<powermock.version>2.0.0-RC.3</powermock.version>
19-
<easymock.version>4.0.1</easymock.version>
18+
<powermock.version>2.0.0</powermock.version>
19+
<easymock.version>4.0.2</easymock.version>
2020
<!-- Build -->
2121
<maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
2222
<maven-source-plugin.version>3.0.1</maven-source-plugin.version>
2323
<maven-javadoc-plugin.version>3.0.1</maven-javadoc-plugin.version>
2424
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
2525
<maven-surefire-plugin.version>2.22.1</maven-surefire-plugin.version>
2626
<maven-failsafe-plugin.version>2.22.1</maven-failsafe-plugin.version>
27+
<maven-enforcer-plugin.version>3.0.0-M2</maven-enforcer-plugin.version>
2728
<maven-release-plugin.version>2.5.3</maven-release-plugin.version>
2829
<maven-scm-provider-gitexe.version>1.11.1</maven-scm-provider-gitexe.version>
29-
<github-release-plugin.version>1.3.0</github-release-plugin.version>
30+
<exists-maven-plugin.version>0.0.6</exists-maven-plugin.version>
31+
<github-release-plugin.version>1.2.0</github-release-plugin.version>
3032
<nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version>
3133
<!-- Spring -->
32-
<spring.version>5.0.10.RELEASE</spring.version>
33-
<spring-boot.version>2.0.6.RELEASE</spring-boot.version>
34+
<spring.version>5.1.4.RELEASE</spring.version>
35+
<spring-boot.version>2.1.2.RELEASE</spring-boot.version>
3436
</properties>
3537

3638
<repositories>
@@ -51,7 +53,7 @@
5153
<dependency>
5254
<groupId>com.avides.springboot.testcontainer</groupId>
5355
<artifactId>springboot-testcontainer-common</artifactId>
54-
<version>0.1.0-RC10</version>
56+
<version>0.1.0-RC12</version>
5557
</dependency>
5658
<dependency>
5759
<groupId>org.springframework.boot</groupId>
@@ -62,7 +64,7 @@
6264
<dependency>
6365
<groupId>org.springframework.data</groupId>
6466
<artifactId>spring-data-mongodb</artifactId>
65-
<version>2.0.11.RELEASE</version>
67+
<version>2.1.4.RELEASE</version>
6668
<scope>provided</scope>
6769
</dependency>
6870

@@ -167,6 +169,10 @@
167169
<groupId>org.apache.maven.plugins</groupId>
168170
<artifactId>maven-javadoc-plugin</artifactId>
169171
<version>${maven-javadoc-plugin.version}</version>
172+
<configuration>
173+
<!-- Fix for https://bugs.openjdk.java.net/browse/JDK-8212233 -->
174+
<failOnError>false</failOnError>
175+
</configuration>
170176
<executions>
171177
<execution>
172178
<id>attach-javadocs</id>
@@ -322,6 +328,22 @@
322328
</dependency>
323329
</dependencies>
324330
</plugin>
331+
<plugin>
332+
<groupId>org.honton.chas</groupId>
333+
<artifactId>exists-maven-plugin</artifactId>
334+
<version>${exists-maven-plugin.version}</version>
335+
<configuration>
336+
<property>skip-deploy-to-central</property>
337+
<repository>https://oss.sonatype.org/content/repositories/releases/</repository>
338+
</configuration>
339+
<executions>
340+
<execution>
341+
<goals>
342+
<goal>remote</goal>
343+
</goals>
344+
</execution>
345+
</executions>
346+
</plugin>
325347
<plugin>
326348
<groupId>de.jutzig</groupId>
327349
<artifactId>github-release-plugin</artifactId>
@@ -350,8 +372,9 @@
350372
<serverId>ossrh</serverId>
351373
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
352374
<autoReleaseAfterClose>true</autoReleaseAfterClose>
375+
<skipRemoteStaging>${skip-deploy-to-central}</skipRemoteStaging>
353376
</configuration>
354377
</plugin>
355378
</plugins>
356379
</build>
357-
</project>
380+
</project>

0 commit comments

Comments
 (0)