File tree Expand file tree Collapse file tree 6 files changed +11
-5
lines changed
src/it/java-basic-annotations
maven-plugin-report-plugin Expand file tree Collapse file tree 6 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 279
279
<extraArtifact >org.apache.maven.plugin-tools:maven-plugin-tools-annotations:${project.version} :jar:test-sources</extraArtifact >
280
280
<extraArtifact >org.apache.maven.plugin-tools:maven-plugin-tools-annotations:${project.version} :test-jar</extraArtifact >
281
281
</extraArtifacts >
282
+ <scriptVariables >
283
+ <maven3Version >${maven3Version} </maven3Version >
284
+ </scriptVariables >
282
285
</configuration >
283
286
<executions >
284
287
<execution >
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ assert descriptorFile.isFile()
28
28
def pluginDescriptor = new XmlParser (). parse( descriptorFile );
29
29
30
30
assert pluginDescriptor. requiredJavaVersion. text() == ' 1.8'
31
- assert pluginDescriptor. requiredMavenVersion. text() == ' 3.9.9 '
31
+ assert pluginDescriptor. requiredMavenVersion. text() == maven3Version
32
32
33
33
def mojo = pluginDescriptor. mojos. mojo. findAll{ it. goal. text() == " first" }[0 ]
34
34
Original file line number Diff line number Diff line change 281
281
<!-- used in ITs -->
282
282
<extraArtifact >org.apache.maven.plugins:maven-plugin-plugin:${project.version} </extraArtifact >
283
283
</extraArtifacts >
284
+ <scriptVariables >
285
+ <maven3Version >${maven3Version} </maven3Version >
286
+ </scriptVariables >
284
287
</configuration >
285
288
<executions >
286
289
<execution >
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ assert !pluginInfo.text.contains('Memory')
27
27
assert ! pluginInfo. text. contains(' Disk Space' )
28
28
// check JDK and Maven requirements
29
29
assert pluginInfo. text. contains(' 1.8' )
30
- assert pluginInfo. text. contains(' 3.9.9 ' )
30
+ assert pluginInfo. text. contains(maven3Version )
31
31
32
32
// deprecated info and description
33
33
assert pluginInfo. text. contains(' <div><strong>Deprecated.</strong> You don\' t use test goals, do you?</div><br />' )
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ assert !pluginInfo.text.contains('Memory')
27
27
assert ! pluginInfo. text. contains(' Disk Space' )
28
28
// check JDK and Maven requirements
29
29
assert pluginInfo. text. contains(' 1.8' )
30
- assert pluginInfo. text. contains(' 3.9.9 ' )
30
+ assert pluginInfo. text. contains(maven3Version )
31
31
32
32
// deprecated info and description
33
33
assert pluginInfo. text. contains(' <div><strong>Deprecated.</strong> You don\' t use test goals, do you?</div><br />' )
Original file line number Diff line number Diff line change 91
91
<javaVersion >8</javaVersion >
92
92
<pluginTestingHarnessVersion >3.3.0</pluginTestingHarnessVersion >
93
93
<maven4Version >4.0.0-rc-3</maven4Version >
94
- <maven3Version >3.9.9 </maven3Version >
95
- <resolverVersion >1.9.20 </resolverVersion >
94
+ <maven3Version >3.9.11 </maven3Version >
95
+ <resolverVersion >1.9.24 </resolverVersion >
96
96
<slf4jVersion >1.7.36</slf4jVersion >
97
97
<version .maven-invoker-plugin>3.9.1</version .maven-invoker-plugin>
98
98
<maven .site.path>plugin-tools-archives/plugin-tools-LATEST-4.x</maven .site.path>
You can’t perform that action at this time.
0 commit comments