aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@vespa.ai>2024-01-12 15:59:19 +0100
committerBjørn Christian Seime <bjorncs@vespa.ai>2024-01-12 15:59:19 +0100
commit17868bef051fd4bcd552d85ab614e777e85c603e (patch)
tree9e9cc330c63b02b5ae305dc0b58939fb25ec4c52
parent5e8bee077937b2980770da038ec6e9ac2ec16b4e (diff)
Specify goal prefix for custom Maven plugins
-rw-r--r--abi-check-plugin/pom.xml3
-rw-r--r--bundle-plugin/pom.xml3
-rw-r--r--config-class-plugin/pom.xml3
-rw-r--r--vespa-application-maven-plugin/pom.xml3
4 files changed, 12 insertions, 0 deletions
diff --git a/abi-check-plugin/pom.xml b/abi-check-plugin/pom.xml
index 3ece52c0f44..d82f526703e 100644
--- a/abi-check-plugin/pom.xml
+++ b/abi-check-plugin/pom.xml
@@ -65,6 +65,9 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
+ <configuration>
+ <goalPrefix>vespa-abicheck</goalPrefix>
+ </configuration>
</plugin>
<plugin>
<groupId>org.openclover</groupId>
diff --git a/bundle-plugin/pom.xml b/bundle-plugin/pom.xml
index d8f0458a9e9..8869386eef6 100644
--- a/bundle-plugin/pom.xml
+++ b/bundle-plugin/pom.xml
@@ -104,6 +104,9 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
+ <configuration>
+ <goalPrefix>vespa-bundle</goalPrefix>
+ </configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
diff --git a/config-class-plugin/pom.xml b/config-class-plugin/pom.xml
index c28941cf503..ec666d67bd7 100644
--- a/config-class-plugin/pom.xml
+++ b/config-class-plugin/pom.xml
@@ -39,6 +39,9 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
+ <configuration>
+ <goalPrefix>vespa-cfg</goalPrefix>
+ </configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
diff --git a/vespa-application-maven-plugin/pom.xml b/vespa-application-maven-plugin/pom.xml
index 751e6d67157..873c65b84dc 100644
--- a/vespa-application-maven-plugin/pom.xml
+++ b/vespa-application-maven-plugin/pom.xml
@@ -64,6 +64,9 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
+ <configuration>
+ <goalPrefix>vespa-app</goalPrefix>
+ </configuration>
</plugin>
</plugins>
</build>