Skip to content
This repository was archived by the owner on Jun 10, 2020. It is now read-only.

Commit d7ebb44

Browse files
author
Justin Grant
committed
adjusting maven-plugin-plugin to account for new requirements on when it must be run
1 parent f5a18ef commit d7ebb44

File tree

7 files changed

+20
-9
lines changed

7 files changed

+20
-9
lines changed

closure-compiler-maven-plugin/pom.xml

+4-2
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,16 @@
6161
<goals>
6262
<goal>descriptor</goal>
6363
</goals>
64-
</execution>
64+
<phase>process-classes</phase>
65+
</execution>
6566
<!-- if you want to generate help goal -->
6667
<execution>
6768
<id>help-goal</id>
6869
<goals>
6970
<goal>helpmojo</goal>
7071
</goals>
71-
</execution>
72+
<phase>process-classes</phase>
73+
</execution>
7274
</executions>
7375
</plugin>
7476
</plugins>

closure-testing-maven-plugin/pom.xml

+4-2
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,16 @@
6666
<goals>
6767
<goal>descriptor</goal>
6868
</goals>
69-
</execution>
69+
<phase>process-classes</phase>
70+
</execution>
7071
<!-- if you want to generate help goal -->
7172
<execution>
7273
<id>help-goal</id>
7374
<goals>
7475
<goal>helpmojo</goal>
7576
</goals>
76-
</execution>
77+
<phase>process-classes</phase>
78+
</execution>
7779
</executions>
7880
</plugin>
7981
</plugins>

closure-testing-report-maven-plugin/pom.xml

+4-2
Original file line numberDiff line numberDiff line change
@@ -106,14 +106,16 @@
106106
<goals>
107107
<goal>descriptor</goal>
108108
</goals>
109-
</execution>
109+
<phase>process-classes</phase>
110+
</execution>
110111
<!-- if you want to generate help goal -->
111112
<execution>
112113
<id>help-goal</id>
113114
<goals>
114115
<goal>helpmojo</goal>
115116
</goals>
116-
</execution>
117+
<phase>process-classes</phase>
118+
</execution>
117119
</executions>
118120
</plugin>
119121
</plugins>

jsar-maven-plugin/pom.xml

+2
Original file line numberDiff line numberDiff line change
@@ -94,13 +94,15 @@
9494
<goals>
9595
<goal>descriptor</goal>
9696
</goals>
97+
<phase>process-classes</phase>
9798
</execution>
9899
<!-- if you want to generate help goal -->
99100
<execution>
100101
<id>help-goal</id>
101102
<goals>
102103
<goal>helpmojo</goal>
103104
</goals>
105+
<phase>process-classes</phase>
104106
</execution>
105107
</executions>
106108
</plugin>

jsdependency-maven-plugin/pom.xml

+4-2
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,16 @@
8585
<goals>
8686
<goal>descriptor</goal>
8787
</goals>
88-
</execution>
88+
<phase>process-classes</phase>
89+
</execution>
8990
<!-- if you want to generate help goal -->
9091
<execution>
9192
<id>help-goal</id>
9293
<goals>
9394
<goal>helpmojo</goal>
9495
</goals>
95-
</execution>
96+
<phase>process-classes</phase>
97+
</execution>
9698
</executions>
9799
</plugin>
98100
</plugins>

jspreprocessor-maven-plugin/pom.xml

+2
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,15 @@
6565
<goals>
6666
<goal>descriptor</goal>
6767
</goals>
68+
<phase>process-classes</phase>
6869
</execution>
6970
<!-- if you want to generate help goal -->
7071
<execution>
7172
<id>help-goal</id>
7273
<goals>
7374
<goal>helpmojo</goal>
7475
</goals>
76+
<phase>process-classes</phase>
7577
</execution>
7678
</executions>
7779
</plugin>

pom.xml

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
<maven-jxr-plugin.version>2.3</maven-jxr-plugin.version>
2828
<maven-surefire-plugin.version>2.10</maven-surefire-plugin.version>
2929
<maven-pmd-plugin.version>2.5</maven-pmd-plugin.version>
30-
<maven-plugin-plugin.version>3.2.2</maven-plugin-plugin.version>
3130
<maven-project-info-reports-plugin.version>2.3.1</maven-project-info-reports-plugin.version>
3231
<maven-site-plugin.version>3.0</maven-site-plugin.version>
3332
<maven-source-plugin.version>2.1.2</maven-source-plugin.version>

0 commit comments

Comments
 (0)