Skip to content

Commit ed4774b

Browse files
authored
[MPLUGIN-450] Require goalPrefix to be valid (#240)
1 parent 331cf42 commit ed4774b

File tree

47 files changed

+99
-23
lines changed

Some content is hidden

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

47 files changed

+99
-23
lines changed

maven-plugin-plugin/src/it/annotation-with-inheritance-from-deps/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ under the License.
9191
<version>@project.version@</version>
9292
<configuration>
9393
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
94+
<goalPrefix>prefix</goalPrefix>
9495
</configuration>
9596
<executions>
9697
<execution>

maven-plugin-plugin/src/it/annotation-with-inheritance-reactor/module-mojo/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ under the License.
4747
<version>@project.version@</version>
4848
<configuration>
4949
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
50+
<goalPrefix>prefix</goalPrefix>
5051
</configuration>
5152
<executions>
5253
<execution>

maven-plugin-plugin/src/it/annotation-with-inheritance/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ under the License.
8787
<version>@project.version@</version>
8888
<configuration>
8989
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
90+
<goalPrefix>prefix</goalPrefix>
9091
</configuration>
9192
<executions>
9293
<execution>

maven-plugin-plugin/src/it/ant-basic/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<artifactId>maven-plugin-plugin</artifactId>
5555
<version>${pluginPluginVersion}</version>
5656
<configuration>
57-
<prefix>antBasic</prefix>
57+
<goalPrefix>antBasic</goalPrefix>
5858
</configuration>
5959
<dependencies>
6060
<dependency>

maven-plugin-plugin/src/it/ant-simple-usage/plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<artifactId>maven-plugin-plugin</artifactId>
5555
<version>${pluginPluginVersion}</version>
5656
<configuration>
57-
<prefix>antSimpleUsage</prefix>
57+
<goalPrefix>antSimpleUsage</goalPrefix>
5858
</configuration>
5959
<dependencies>
6060
<dependency>

maven-plugin-plugin/src/it/ant-since-maven-plugin/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@
4242
<version>@project.version@</version>
4343
</dependency>
4444
</dependencies>
45+
<configuration>
46+
<goalPrefix>prefix</goalPrefix>
47+
</configuration>
4548
</plugin>
4649
</plugins>
4750
</build>

maven-plugin-plugin/src/it/asm-failure/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@
4343
<plugin>
4444
<artifactId>maven-plugin-plugin</artifactId>
4545
<version>@project.version@</version>
46+
<configuration>
47+
<goalPrefix>prefix</goalPrefix>
48+
</configuration>
4649
</plugin>
4750
</plugins>
4851
</build>

maven-plugin-plugin/src/it/beanshell-simple/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
<artifactId>maven-plugin-plugin</artifactId>
5454
<version>${pluginPluginVersion}</version>
5555
<configuration>
56-
<prefix>beanshellBasic</prefix>
56+
<goalPrefix>beanshellBasic</goalPrefix>
5757
</configuration>
5858
<dependencies>
5959
<dependency>

maven-plugin-plugin/src/it/help-basic-deprecated-annotation-only/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@ under the License.
6565
<groupId>org.apache.maven.plugins</groupId>
6666
<artifactId>maven-plugin-plugin</artifactId>
6767
<version>@project.version@</version>
68+
<configuration>
69+
<goalPrefix>help-deprecated-annotation-only</goalPrefix>
70+
</configuration>
6871
<executions>
6972
<execution>
7073
<id>help-goal</id>

maven-plugin-plugin/src/it/help-basic-jdk11/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@ under the License.
7070
<groupId>org.apache.maven.plugins</groupId>
7171
<artifactId>maven-plugin-plugin</artifactId>
7272
<version>@project.version@</version>
73+
<configuration>
74+
<goalPrefix>help-jdk11</goalPrefix>
75+
</configuration>
7376
<executions>
7477
<execution>
7578
<id>default-descriptor</id>

0 commit comments

Comments
 (0)