Skip to content

Commit

Permalink
feat: use maven properties to manage dependency versions for native p…
Browse files Browse the repository at this point in the history
…rofile (#824)
  • Loading branch information
mpeddada1 committed May 14, 2024
1 parent ffb2a7a commit 465bb39
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions native-image-shared-config/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@
<properties>
<surefire.version>3.2.5</surefire.version>
<graal-sdk.version>22.3.5</graal-sdk.version>
<native-maven-plugin.version>0.10.1</native-maven-plugin.version>
<junit-vintage-engine.version>5.10.2</junit-vintage-engine.version>
<opentest4j.version>1.3.0</opentest4j.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -166,12 +169,12 @@
<dependency>
<groupId>org.opentest4j</groupId>
<artifactId>opentest4j</artifactId>
<version>1.3.0</version>
<version>${opentest4j.version}</version>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>5.10.2</version>
<version>${junit-vintage-engine.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -185,7 +188,7 @@
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>5.10.2</version>
<version>${junit-vintage-engine.version}</version>
</dependency>
</dependencies>
<configuration>
Expand All @@ -201,7 +204,7 @@
<plugin>
<groupId>org.graalvm.buildtools</groupId>
<artifactId>native-maven-plugin</artifactId>
<version>0.10.1</version>
<version>${native-maven-plugin.version}</version>
<extensions>true</extensions>
<executions>
<execution>
Expand Down

0 comments on commit 465bb39

Please sign in to comment.