Skip to content

Commit cd1a2d9

Browse files
committed
fix(samples): align native profile junit and surefire versions with shared config
1 parent 1eb6aa3 commit cd1a2d9

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

  • java-samples/native-image-sample

java-samples/native-image-sample/pom.xml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -83,20 +83,19 @@
8383

8484
<profiles>
8585
<!-- Native Profile-->
86-
<!-- TODO(10840): Use maven properties to track versions once https://github.com/googleapis/java-shared-config/pull/824 is merged. -->
8786
<profile>
8887
<id>native</id>
8988

9089
<dependencies>
9190
<dependency>
9291
<groupId>org.opentest4j</groupId>
9392
<artifactId>opentest4j</artifactId>
94-
<version>1.3.0</version>
93+
<version>${opentest4j.version}</version>
9594
</dependency>
9695
<dependency>
9796
<groupId>org.junit.vintage</groupId>
9897
<artifactId>junit-vintage-engine</artifactId>
99-
<version>5.14.4</version>
98+
<version>${junit-vintage-engine.version}</version>
10099
<scope>test</scope>
101100
</dependency>
102101
</dependencies>
@@ -106,12 +105,12 @@
106105
<plugin>
107106
<groupId>org.apache.maven.plugins</groupId>
108107
<artifactId>maven-surefire-plugin</artifactId>
109-
<version>3.2.5</version>
108+
<version>${surefire.version}</version>
110109
<dependencies>
111110
<dependency>
112111
<groupId>org.junit.vintage</groupId>
113112
<artifactId>junit-vintage-engine</artifactId>
114-
<version>5.14.4</version>
113+
<version>${junit-vintage-engine.version}</version>
115114
</dependency>
116115
</dependencies>
117116
<configuration>

0 commit comments

Comments
 (0)