Skip to content

Commit

Permalink
chore: exec maven plugin defined at main pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
manusa committed Feb 22, 2024
1 parent 04d9d63 commit 8f46e25
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 11 deletions.
7 changes: 3 additions & 4 deletions crd-generator/test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@
<artifactId>lombok</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
Expand All @@ -64,14 +64,13 @@
<version>${keycloak-version}</version>
<scope>test</scope>
</dependency>

</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<goals>
Expand Down
1 change: 0 additions & 1 deletion httpclient-jdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<goals>
Expand Down
1 change: 0 additions & 1 deletion httpclient-jetty/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<goals>
Expand Down
1 change: 0 additions & 1 deletion httpclient-okhttp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<goals>
Expand Down
1 change: 0 additions & 1 deletion httpclient-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<goals>
Expand Down
1 change: 0 additions & 1 deletion httpclient-vertx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<goals>
Expand Down
1 change: 0 additions & 1 deletion kubernetes-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<goals>
Expand Down
1 change: 0 additions & 1 deletion kubernetes-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,6 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<goals>
Expand Down
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@

<!-- Maven plugin versions -->
<buildnumber.plugin.version>3.2.0</buildnumber.plugin.version>
<exec.maven-plugin.version>3.2.0</exec.maven-plugin.version>
<maven.compiler.plugin.version>3.12.1</maven.compiler.plugin.version>
<maven.bundle.plugin.version>5.1.9</maven.bundle.plugin.version>
<maven.buildhelper.plugin.version>3.5.0</maven.buildhelper.plugin.version>
Expand Down Expand Up @@ -983,6 +984,11 @@
</resources>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>${exec.maven-plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
Expand Down

0 comments on commit 8f46e25

Please sign in to comment.