Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Mar 27, 2024
1 parent 6fe91ea commit 9106281
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
7 changes: 0 additions & 7 deletions maven-plugin-plugin/src/it/v4api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,6 @@ under the License.
<configuration>
<source>1.8</source><!-- avoid ${maven.compiler.source} since value is not as expected -->
<target>1.8</target><!-- avoid ${maven.compiler.target} since value is not as expected -->
<annotationProcessorPaths>
<path>
<groupId>org.apache.maven</groupId>
<artifactId>maven-di</artifactId>
<version>@maven4Version@</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
Expand Down
2 changes: 1 addition & 1 deletion maven-plugin-plugin/src/it/v4api/verify.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ assert descriptorFile.isFile()

def pluginDescriptor = new XmlParser().parse( descriptorFile );

assert pluginDescriptor.requiredJavaVersion.text() == '1.8'
assert pluginDescriptor.requiredJavaVersion.text() == '17'
assert pluginDescriptor.requiredMavenVersion.text() == '4.0.0-alpha-13'

def mojo = pluginDescriptor.mojos.mojo.findAll{ it.goal.text() == "first" }[0]
Expand Down

0 comments on commit 9106281

Please sign in to comment.