Skip to content

Commit d3d612b

Browse files
[MINVOKER-316] Refresh plugins versions in IT tests
use properties for plugins version used in IT tests
1 parent bfb75f9 commit d3d612b

File tree

52 files changed

+105
-54
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+105
-54
lines changed

pom.xml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,19 @@ under the License.
357357
<profile>
358358
<id>run-its</id>
359359
<properties>
360-
<sitePluginVersion>3.7.1</sitePluginVersion>
360+
<!-- plugins versions used in IT tests -->
361+
<antrunPluginVersion>3.1.0</antrunPluginVersion>
362+
<cleanPluginVersion>3.2.0</cleanPluginVersion>
363+
<compilerPluginVersion>3.10.1</compilerPluginVersion>
364+
<enforcerPluginVersion>3.1.0</enforcerPluginVersion>
365+
<helpPluginVersion>3.3.0</helpPluginVersion>
366+
<installPluginVersion>3.1.0</installPluginVersion>
367+
<jarPluginVersion>3.3.0</jarPluginVersion>
368+
<pluginPluginVersion>3.7.0</pluginPluginVersion>
369+
<resourcesPluginVersion>3.3.0</resourcesPluginVersion>
370+
<sitePluginVersion>3.12.1</sitePluginVersion>
371+
<sourcePluginVersion>3.2.1</sourcePluginVersion>
372+
<surefirePluginVersion>3.0.0-M7</surefirePluginVersion>
361373
</properties>
362374
<build>
363375
<pluginManagement>

src/it/MINVOKER-191/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,17 +49,17 @@ under the License.
4949
<plugin>
5050
<groupId>org.apache.maven.plugins</groupId>
5151
<artifactId>maven-compiler-plugin</artifactId>
52-
<version>2.5.1</version>
52+
<version>@compilerPluginVersion@</version>
5353
</plugin>
5454
<plugin>
5555
<groupId>org.apache.maven.plugins</groupId>
5656
<artifactId>maven-plugin-plugin</artifactId>
57-
<version>2.9</version>
57+
<version>@pluginPluginVersion@</version>
5858
</plugin>
5959
<plugin>
6060
<groupId>org.apache.maven.plugins</groupId>
6161
<artifactId>maven-resources-plugin</artifactId>
62-
<version>2.6</version>
62+
<version>@resourcesPluginVersion@</version>
6363
</plugin>
6464
<plugin>
6565
<groupId>org.apache.maven.plugins</groupId>

src/it/MINVOKER-196_junit_report_file/pom.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ under the License.
4141
<!-- This triggers the download of a known version of this plugin which can then be safely invoked by the IT project -->
4242
<groupId>org.apache.maven.plugins</groupId>
4343
<artifactId>maven-resources-plugin</artifactId>
44-
<version>2.2</version>
44+
<version>@resourcesPluginVersion@</version>
4545
</plugin>
4646
<plugin>
4747
<groupId>org.apache.maven.plugins</groupId>
@@ -54,6 +54,8 @@ under the License.
5454
<localRepositoryPath>${project.build.directory}/it-repo</localRepositoryPath>
5555
<settingsFile>src/it/settings.xml</settingsFile>
5656
<goals>
57+
<!-- Maven 4 require strict checksum by default, so relax here -->
58+
<goal>-c</goal>
5759
<goal>validate</goal>
5860
</goals>
5961
</configuration>

src/it/MINVOKER-196_junit_report_file/src/it/project_2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ under the License.
6464
<plugins>
6565
<plugin>
6666
<artifactId>maven-resources-plugin</artifactId>
67-
<version>2.2</version>
67+
<version>@resourcesPluginVersion@</version>
6868
</plugin>
6969
</plugins>
7070
</build>

src/it/invocation-cmdline-exclude/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ under the License.
3131

3232
<properties>
3333
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
34+
<enforcerPluginVersion>@enforcerPluginVersion@</enforcerPluginVersion>
3435
</properties>
3536

3637
<build>

src/it/invocation-cmdline-exclude/src/it/minvoker-140-executable/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ under the License.
3535
<plugin>
3636
<groupId>org.apache.maven.plugins</groupId>
3737
<artifactId>maven-enforcer-plugin</artifactId>
38-
<version>3.1.0</version>
38+
<version>@enforcerPluginVersion@</version>
3939
<executions>
4040
<execution>
4141
<goals>

src/it/invocation-cmdline-exclude/src/it/minvoker-140-ignorable/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ under the License.
3535
<plugin>
3636
<groupId>org.apache.maven.plugins</groupId>
3737
<artifactId>maven-enforcer-plugin</artifactId>
38-
<version>3.1.0</version>
38+
<version>@enforcerPluginVersion@</version>
3939
<executions>
4040
<execution>
4141
<goals>

src/it/invocation-debug/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ under the License.
3333

3434
<properties>
3535
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
36+
<enforcerPluginVersion>@enforcerPluginVersion@</enforcerPluginVersion>
3637
</properties>
3738

3839
<build>

src/it/invocation-debug/src/it/minvoker-142/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ under the License.
3535
<plugin>
3636
<groupId>org.apache.maven.plugins</groupId>
3737
<artifactId>maven-enforcer-plugin</artifactId>
38-
<version>1.1.1</version>
38+
<version>@enforcerPluginVersion@</version>
3939
<executions>
4040
<execution>
4141
<goals>

src/it/invocation-emptyproperty/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ under the License.
3131

3232
<properties>
3333
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
34+
<enforcerPluginVersion>@enforcerPluginVersion@</enforcerPluginVersion>
3435
</properties>
3536

3637
<build>

0 commit comments

Comments
 (0)