Skip to content

Commit fe59de2

Browse files
authored
Update maven-surefire-plugin to 3.0.0-M3 to fix Java 8 classloader (googleapis#4344)
* Update maven-surefire-plugin to 3.0.0-M3 to fix Java 8 classloader * Update failsafe plugin to 3.0.0-M3 too * Specify maven-surefire-plugin version in bigtable-emulator
1 parent 052c4a9 commit fe59de2

File tree

7 files changed

+21
-16
lines changed

7 files changed

+21
-16
lines changed

google-cloud-clients/google-cloud-bigtable/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
<plugin>
104104
<groupId>org.apache.maven.plugins</groupId>
105105
<artifactId>maven-failsafe-plugin</artifactId>
106-
<version>2.19.1</version>
106+
<version>3.0.0-M3</version>
107107
<executions>
108108
<execution>
109109
<goals>
@@ -121,18 +121,18 @@
121121
<dependency>
122122
<groupId>org.apache.maven.surefire</groupId>
123123
<artifactId>surefire-junit4</artifactId>
124-
<version>2.19.1</version>
124+
<version>3.0.0-M3</version>
125125
</dependency>
126126
</dependencies>
127127
</plugin>
128128
<plugin>
129129
<artifactId>maven-surefire-plugin</artifactId>
130-
<version>2.19.1</version>
130+
<version>3.0.0-M3</version>
131131
<dependencies>
132132
<dependency>
133133
<groupId>org.apache.maven.surefire</groupId>
134134
<artifactId>surefire-junit4</artifactId>
135-
<version>2.19.1</version>
135+
<version>3.0.0-M3</version>
136136
</dependency>
137137
</dependencies>
138138
</plugin>

google-cloud-clients/google-cloud-logging/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,12 +96,12 @@
9696
<plugins>
9797
<plugin>
9898
<artifactId>maven-surefire-plugin</artifactId>
99-
<version>2.19.1</version>
99+
<version>3.0.0-M3</version>
100100
<dependencies>
101101
<dependency>
102102
<groupId>org.apache.maven.surefire</groupId>
103103
<artifactId>surefire-junit4</artifactId>
104-
<version>2.19.1</version>
104+
<version>3.0.0-M3</version>
105105
</dependency>
106106
</dependencies>
107107
</plugin>

google-cloud-clients/google-cloud-spanner/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<plugin>
4545
<groupId>org.apache.maven.plugins</groupId>
4646
<artifactId>maven-surefire-plugin</artifactId>
47-
<version>2.12.4</version>
47+
<version>3.0.0-M3</version>
4848
<configuration>
4949
<excludedGroups>com.google.cloud.spanner.IntegrationTest</excludedGroups>
5050
<reportNameSuffix>sponge_log</reportNameSuffix>
@@ -53,7 +53,7 @@
5353
<plugin>
5454
<groupId>org.apache.maven.plugins</groupId>
5555
<artifactId>maven-failsafe-plugin</artifactId>
56-
<version>2.19.1</version>
56+
<version>3.0.0-M3</version>
5757
<configuration>
5858
<systemPropertyVariables>
5959
<spanner.testenv.config.class>com.google.cloud.spanner.GceTestEnvConfig</spanner.testenv.config.class>

google-cloud-clients/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@
516516
<plugin>
517517
<groupId>org.apache.maven.plugins</groupId>
518518
<artifactId>maven-surefire-plugin</artifactId>
519-
<version>2.19.1</version>
519+
<version>3.0.0-M3</version>
520520
<configuration>
521521
<!-- Excludes integration tests and smoke tests when unit tests are run -->
522522
<excludes>
@@ -574,7 +574,7 @@
574574
<plugin>
575575
<groupId>org.apache.maven.plugins</groupId>
576576
<artifactId>maven-failsafe-plugin</artifactId>
577-
<version>2.19.1</version>
577+
<version>3.0.0-M3</version>
578578
<executions>
579579
<execution>
580580
<goals>
@@ -906,7 +906,7 @@
906906
<plugin>
907907
<groupId>org.apache.maven.plugins</groupId>
908908
<artifactId>maven-failsafe-plugin</artifactId>
909-
<version>2.19.1</version>
909+
<version>3.0.0-M3</version>
910910
<executions>
911911
<execution>
912912
<goals>

google-cloud-examples/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@
189189
<plugin>
190190
<groupId>org.apache.maven.plugins</groupId>
191191
<artifactId>maven-failsafe-plugin</artifactId>
192-
<version>2.19.1</version>
192+
<version>3.0.0-M3</version>
193193
<configuration>
194194
<excludes>
195195
<exclude>**/IT*.java</exclude>
@@ -223,7 +223,7 @@
223223
<plugin>
224224
<groupId>org.apache.maven.plugins</groupId>
225225
<artifactId>maven-failsafe-plugin</artifactId>
226-
<version>2.19.1</version>
226+
<version>3.0.0-M3</version>
227227
<configuration>
228228
<excludes combine.self="override"></excludes>
229229
</configuration>

google-cloud-testing/google-cloud-bigtable-emulator/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,11 @@
113113
<autoReleaseAfterClose>false</autoReleaseAfterClose>
114114
</configuration>
115115
</plugin>
116+
<plugin>
117+
<groupId>org.apache.maven.plugins</groupId>
118+
<artifactId>maven-surefire-plugin</artifactId>
119+
<version>3.0.0-M3</version>
120+
</plugin>
116121
</plugins>
117122
</build>
118123

google-cloud-util/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,20 @@
1717
<dependency>
1818
<groupId>org.apache.maven.plugins</groupId>
1919
<artifactId>maven-surefire-plugin</artifactId>
20-
<version>2.17</version>
20+
<version>3.0.0-M3</version>
2121
<scope>test</scope>
2222
</dependency>
2323
</dependencies>
2424
<build>
2525
<plugins>
2626
<plugin>
2727
<artifactId>maven-surefire-plugin</artifactId>
28-
<version>2.17</version>
28+
<version>3.0.0-M3</version>
2929
<dependencies>
3030
<dependency>
3131
<groupId>org.apache.maven.surefire</groupId>
3232
<artifactId>surefire-junit4</artifactId>
33-
<version>2.17</version>
33+
<version>3.0.0-M3</version>
3434
</dependency>
3535
</dependencies>
3636
</plugin>

0 commit comments

Comments
 (0)