Skip to content

Commit

Permalink
Synchronize maven-version
Browse files Browse the repository at this point in the history
Make sure that different parts of maven used are at the same version.
  • Loading branch information
akurtakov committed Jun 18, 2024
1 parent 6a56342 commit 83fc410
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions org.eclipse.images.renderer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,21 @@
<relativePath>../</relativePath>
</parent>
<packaging>maven-plugin</packaging>
<properties>
<maven-version>3.9.8</maven-version>
</properties>

<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.9.7</version>
<version>${maven-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>3.9.8</version>
<version>${maven-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 83fc410

Please sign in to comment.