Skip to content

Commit

Permalink
Improve ITs
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-o committed Aug 18, 2024
1 parent dbca15a commit 636442b
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 25 deletions.
1 change: 0 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ under the License.
<!-- for ITs -->
<compilerPluginVersion>3.11.0</compilerPluginVersion>
<sourcePluginVersion>3.3.0</sourcePluginVersion>
<surefirePluginVersion>3.2.2</surefirePluginVersion>
<enforcerPluginVersion>3.4.1</enforcerPluginVersion>
<pluginPluginVersion>3.10.1</pluginPluginVersion>
<jarPluginVersion>3.3.0</jarPluginVersion>
Expand Down
2 changes: 1 addition & 1 deletion src/it/projects/MJAVADOC-257/mymojo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0</version>
<version>@mavenVersion@</version>
</dependency>
</dependencies>
</project>
25 changes: 18 additions & 7 deletions src/it/projects/MJAVADOC-257/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,24 @@
<artifactId>maven-javadoc-plugin</artifactId>
<version>@project.version@</version>
<configuration>
<tagletArtifacts>
<tagletArtifact>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-tools-javadoc</artifactId>
<version>3.3</version>
</tagletArtifact>
</tagletArtifacts>
<tags>
<tag>
<name>goal</name>
<placement>X</placement>
</tag>
<tag>
<name>phase</name>
<placement>X</placement>
</tag>
<tag>
<name>parameter</name>
<placement>X</placement>
</tag>
<tag>
<name>required</name>
<placement>X</placement>
</tag>
</tags>
</configuration>
<reportSets>
<reportSet>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,17 @@
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.6.0</version>
<version>@mavenVersion@</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>3.8.1</version>
<version>@mavenVersion@</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.6.0</version>
<version>@pluginPluginVersion@</version>
<optional>true</optional>
</dependency>
<dependency>
Expand All @@ -69,4 +69,4 @@
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
</project>
3 changes: 3 additions & 0 deletions src/it/projects/MJAVADOC-569_aggr-mixed/module2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@
</goals>
</execution>
</executions>
<configuration>
<goalPrefix>module2</goalPrefix>
</configuration>
</plugin>
</plugins>
</build>
Expand Down
4 changes: 2 additions & 2 deletions src/it/projects/MJAVADOC-569_aggr-mixed/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.0</version>
<version>@mavenVersion@</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.6.0</version>
<version>@pluginPluginVersion@</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down
5 changes: 0 additions & 5 deletions src/it/projects/MJAVADOC-591_release8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,6 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>@compilerPluginVersion@</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>@surefirePluginVersion@</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,6 @@ under the License.
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>@surefirePluginVersion@</version>
</plugin>
</plugins>
</pluginManagement>
</build>
Expand Down

0 comments on commit 636442b

Please sign in to comment.