Skip to content

Commit 1934c85

Browse files
[MPLUGIN-485] Upgrade Parent to 40
1 parent 52cf6b5 commit 1934c85

File tree

18 files changed

+56
-17
lines changed

18 files changed

+56
-17
lines changed

maven-plugin-plugin/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,13 @@
284284
<pomExclude>plugin-info-jdk/pom.xml</pomExclude>
285285
<!-- relies on just a given plugin.xml for generating a report, this is no longer supported -->
286286
</pomExcludes>
287+
<extraArtifacts>
288+
<!-- used in ITs -->
289+
<extraArtifact>org.apache.maven.plugin-tools:maven-plugin-tools-annotations:${project.version}:jar:test-sources</extraArtifact>
290+
<extraArtifact>org.apache.maven.plugin-tools:maven-plugin-tools-annotations:${project.version}:test-jar</extraArtifact>
291+
<extraArtifact>org.apache.maven.plugin-tools:maven-script-ant:${project.version}</extraArtifact>
292+
<extraArtifact>org.apache.maven.plugin-tools:maven-script-beanshell:${project.version}</extraArtifact>
293+
</extraArtifacts>
287294
</configuration>
288295
<executions>
289296
<execution>

maven-plugin-plugin/src/it/annotation-with-inheritance-from-deps/verify.groovy

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
* under the License.
1818
*/
1919

20+
import groovy.xml.XmlParser
21+
2022
File descriptorFile = new File( basedir, "target/classes/META-INF/maven/plugin.xml" );
2123
assert descriptorFile.isFile()
2224

maven-plugin-plugin/src/it/annotation-with-inheritance-reactor/verify.groovy

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
* under the License.
1818
*/
1919

20+
import groovy.xml.XmlParser
21+
2022
File touchFile = new File( basedir, "module-mojo/target/touch.txt" )
2123
assert touchFile.isFile()
2224

maven-plugin-plugin/src/it/annotation-with-inheritance/verify.groovy

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
* under the License.
1818
*/
1919

20+
import groovy.xml.XmlParser
21+
2022
File touchFile = new File( basedir, "target/touch.txt" )
2123
assert touchFile.isFile()
2224

maven-plugin-plugin/src/it/java-basic-annotations-jdk8/verify.groovy

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
* under the License.
1818
*/
1919

20+
import groovy.xml.XmlParser
21+
2022
File touchFile = new File( basedir, "target/touch.txt" )
2123
assert touchFile.isFile()
2224

maven-plugin-plugin/src/it/java-basic-annotations-jdkcurrent/verify.groovy

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
* under the License.
1818
*/
1919

20+
import groovy.xml.XmlParser
21+
2022
File touchFile = new File( basedir, "target/touch.txt" )
2123
assert touchFile.isFile()
2224

maven-plugin-plugin/src/it/java-basic-annotations/verify.groovy

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
* under the License.
1818
*/
1919

20+
import groovy.xml.XmlParser
21+
2022
File touchFile = new File( basedir, "target/touch.txt" )
2123
assert touchFile.isFile()
2224

maven-plugin-plugin/src/it/java-basic/verify.groovy

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
* under the License.
1818
*/
1919

20+
import groovy.xml.XmlParser
21+
2022
File touchFile = new File( basedir, "target/touch.txt" )
2123
assert touchFile.isFile()
2224

maven-plugin-plugin/src/it/mplugin-223/verify.groovy

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
* limitations under the License.
1616
*/
1717

18+
import groovy.xml.XmlParser
19+
1820
File descriptorFile = new File( basedir, "target/classes/META-INF/maven/plugin.xml" );
1921
assert descriptorFile.isFile()
2022

maven-plugin-plugin/src/it/mplugin-305_defaultMojoDependencies/verify.groovy

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
* limitations under the License.
1616
*/
1717

18+
import groovy.xml.XmlParser
19+
1820
File descriptorFile = new File( basedir, "target/classes/META-INF/maven/plugin.xml" );
1921
assert descriptorFile.isFile()
2022

0 commit comments

Comments
 (0)