This is an automated email from the ASF dual-hosted git repository.
michaelo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-site-plugin.git
The following commit(s) were added to refs/heads/master by this push:
new 1fc3b093 Fix build with Maven 3.9.8
1fc3b093 is described below
commit 1fc3b0938d4cc77556f25b21939de73cf251f1a1
Author: Michael Osipov <[email protected]>
AuthorDate: Sun Jul 7 19:14:10 2024 +0200
Fix build with Maven 3.9.8
---
src/it/projects/MSITE-504/maven-plugin/pom.xml | 15 ++++++++++++++-
1 file changed, 14 insertions(+), 1 deletion(-)
diff --git a/src/it/projects/MSITE-504/maven-plugin/pom.xml
b/src/it/projects/MSITE-504/maven-plugin/pom.xml
index 25987275..9049ffef 100644
--- a/src/it/projects/MSITE-504/maven-plugin/pom.xml
+++ b/src/it/projects/MSITE-504/maven-plugin/pom.xml
@@ -33,11 +33,24 @@ under the License.
<packaging>maven-plugin</packaging>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-plugin-plugin</artifactId>
+ <version>@mavenPluginPluginVersion@</version>
+ <configuration>
+ <goalPrefix>MSITE-504</goalPrefix>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
- <version>3.2.5</version>
+ <version>@mavenVersion@</version>
</dependency>
</dependencies>
</project>