Skip to content

Commit

Permalink
[MDEP-867] Upgrade plugins in ITs
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-o committed May 19, 2023
1 parent 159090b commit 6ccca01
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -455,6 +455,7 @@ under the License.
<settingsFile>src/it/mrm/settings.xml</settingsFile>
<filterProperties>
<repository.proxy.url>${repository.proxy.url}</repository.proxy.url>
<compilerPluginVersion>3.11.0</compilerPluginVersion>
</filterProperties>
</configuration>
<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<version>1.0</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
Expand All @@ -62,7 +62,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.4.1</version>
<version>3.3.0</version>
<executions>
<execution>
<id>enforce-property</id>
Expand Down
4 changes: 2 additions & 2 deletions src/it/projects/mdep-439-analyze-java8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ under the License.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>

<groupId>org.sugis.maven</groupId>
<artifactId>dep-analyze-java8</artifactId>
<name>dep-analyze-java8</name>
Expand Down Expand Up @@ -56,7 +56,7 @@ under the License.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<version>@compilerPluginVersion@</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
Expand Down
2 changes: 1 addition & 1 deletion src/it/projects/mdep-599-analyze-java9/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<version>@compilerPluginVersion@</version>
</plugin>
</plugins>
</pluginManagement>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

</properties>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>@compilerPluginVersion@</version>
<configuration>
<source>8</source>
<target>8</target>
Expand Down
4 changes: 2 additions & 2 deletions src/it/projects/setup-custom-ear-lifecycle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ under the License.
<artifactId>maven-custom-ear</artifactId>
<version>1.0</version>
<packaging>pom</packaging>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<version>@compilerPluginVersion@</version>
</plugin>
</plugins>
</pluginManagement>
Expand Down

0 comments on commit 6ccca01

Please sign in to comment.