Skip to content

Commit 065b4ea

Browse files
authored
Merge pull request #228 from aguibert/tc-1.15.0-rc2
Upgrade to Testcontainers 1.15.0-rc2
2 parents 6d5b990 + f8ede54 commit 065b4ea

5 files changed

Lines changed: 6 additions & 32 deletions

File tree

modules/testcontainers/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ sourceSets {
1616

1717
dependencies {
1818
compile project(':microshed-testing-core')
19-
compile 'org.testcontainers:junit-jupiter:1.14.3'
19+
compile 'org.testcontainers:junit-jupiter:1.15.0-rc2'
2020
testCompile 'org.eclipse.microprofile.rest.client:microprofile-rest-client-api:1.4.1'
2121
testCompile 'org.slf4j:slf4j-log4j12:1.7.30'
22-
testCompile 'org.testcontainers:mockserver:1.14.3'
22+
testCompile 'org.testcontainers:mockserver:1.15.0-rc2'
2323
testImplementation 'org.junit.jupiter:junit-jupiter:5.7.0'
2424
}
2525

sample-apps/everything-app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
compile group: 'org.mongodb', name: 'mongo-java-driver', version: '3.11.2'
99
testCompile project(':microshed-testing-testcontainers')
1010
testCompile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.29'
11-
testCompile 'org.testcontainers:mockserver:1.14.1'
11+
testCompile 'org.testcontainers:mockserver:1.15.0-rc2'
1212
testCompile 'org.mock-server:mockserver-client-java:5.5.4'
1313
testCompile 'io.rest-assured:rest-assured:4.2.0'
1414
testImplementation 'org.junit.jupiter:junit-jupiter:5.6.0'

sample-apps/jdbc-app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ configurations {
99
dependencies {
1010
providedCompile 'javax:javaee-api:8.0.1'
1111
providedCompile 'org.eclipse.microprofile:microprofile:2.1'
12-
testCompile 'org.testcontainers:postgresql:1.14.1'
12+
testCompile 'org.testcontainers:postgresql:1.15.0-rc2'
1313
testCompile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.29'
1414
testCompile project(':microshed-testing-testcontainers')
1515
testImplementation 'org.junit.jupiter:junit-jupiter:5.6.0'

sample-apps/kafka-app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies {
99
compile 'org.apache.kafka:kafka-clients:2.4.0'
1010
testCompile project(':microshed-testing-testcontainers')
1111
testCompile 'org.awaitility:awaitility:4.0.2'
12-
testCompile 'org.testcontainers:kafka:1.14.1'
12+
testCompile 'org.testcontainers:kafka:1.15.0-rc2'
1313
testCompile 'org.slf4j:slf4j-log4j12:1.7.29'
1414
testImplementation 'org.junit.jupiter:junit-jupiter:5.6.0'
1515
}

sample-apps/quarkus-app/pom.xml

Lines changed: 1 addition & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
<dependency>
8989
<groupId>org.testcontainers</groupId>
9090
<artifactId>postgresql</artifactId>
91-
<version>1.12.5</version>
91+
<version>1.15.0-rc2</version>
9292
<scope>test</scope>
9393
</dependency>
9494
<!--
@@ -105,32 +105,6 @@
105105
<version>1.7.29</version>
106106
<scope>test</scope>
107107
</dependency>
108-
109-
<!-- Temp: Force rest-assured 4.2.0 because it can integrate with JSON-B -->
110-
<dependency>
111-
<groupId>io.rest-assured</groupId>
112-
<artifactId>rest-assured</artifactId>
113-
<version>4.2.0</version>
114-
<scope>test</scope>
115-
<exclusions>
116-
<exclusion>
117-
<artifactId>activation</artifactId>
118-
<groupId>javax.activation</groupId>
119-
</exclusion>
120-
<exclusion>
121-
<artifactId>javax.activation-api</artifactId>
122-
<groupId>javax.activation</groupId>
123-
</exclusion>
124-
<exclusion>
125-
<artifactId>jaxb-osgi</artifactId>
126-
<groupId>com.sun.xml.bind</groupId>
127-
</exclusion>
128-
<exclusion>
129-
<artifactId>commons-logging</artifactId>
130-
<groupId>commons-logging</groupId>
131-
</exclusion>
132-
</exclusions>
133-
</dependency>
134108
</dependencies>
135109
<build>
136110
<plugins>

0 commit comments

Comments
 (0)