Skip to content

Commit 465bb39

Browse files
authored
feat: use maven properties to manage dependency versions for native profile (#824)
1 parent ffb2a7a commit 465bb39

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

native-image-shared-config/pom.xml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@
6060
<properties>
6161
<surefire.version>3.2.5</surefire.version>
6262
<graal-sdk.version>22.3.5</graal-sdk.version>
63+
<native-maven-plugin.version>0.10.1</native-maven-plugin.version>
64+
<junit-vintage-engine.version>5.10.2</junit-vintage-engine.version>
65+
<opentest4j.version>1.3.0</opentest4j.version>
6366
</properties>
6467

6568
<dependencyManagement>
@@ -166,12 +169,12 @@
166169
<dependency>
167170
<groupId>org.opentest4j</groupId>
168171
<artifactId>opentest4j</artifactId>
169-
<version>1.3.0</version>
172+
<version>${opentest4j.version}</version>
170173
</dependency>
171174
<dependency>
172175
<groupId>org.junit.vintage</groupId>
173176
<artifactId>junit-vintage-engine</artifactId>
174-
<version>5.10.2</version>
177+
<version>${junit-vintage-engine.version}</version>
175178
<scope>test</scope>
176179
</dependency>
177180
</dependencies>
@@ -185,7 +188,7 @@
185188
<dependency>
186189
<groupId>org.junit.vintage</groupId>
187190
<artifactId>junit-vintage-engine</artifactId>
188-
<version>5.10.2</version>
191+
<version>${junit-vintage-engine.version}</version>
189192
</dependency>
190193
</dependencies>
191194
<configuration>
@@ -201,7 +204,7 @@
201204
<plugin>
202205
<groupId>org.graalvm.buildtools</groupId>
203206
<artifactId>native-maven-plugin</artifactId>
204-
<version>0.10.1</version>
207+
<version>${native-maven-plugin.version}</version>
205208
<extensions>true</extensions>
206209
<executions>
207210
<execution>

0 commit comments

Comments
 (0)