Skip to content

Commit

Permalink
Fix missed snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Mar 21, 2024
1 parent 444cb33 commit 24c76e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion maven-plugin-plugin/pom.xml
Expand Up @@ -182,7 +182,7 @@
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-di</artifactId>
<version>4.0.0-alpha-13-SNAPSHOT</version>
<version>${maven4Version}</version>
<scope>test</scope>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion maven-plugin-plugin/src/it/v4api/verify.groovy
Expand Up @@ -25,7 +25,7 @@ assert descriptorFile.isFile()
def pluginDescriptor = new XmlParser().parse( descriptorFile );

assert pluginDescriptor.requiredJavaVersion.text() == '1.8'
assert pluginDescriptor.requiredMavenVersion.text() == '4.0.0-alpha-13-SNAPSHOT'
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 24c76e2

Please sign in to comment.