Skip to content

Commit

Permalink
Upgrade to beta-5
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Oct 22, 2024
1 parent c9d4215 commit eda97cc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

<properties>
<javaVersion>17</javaVersion>
<mavenVersion>4.0.0-beta-3</mavenVersion>
<mavenVersion>4.0.0-beta-5</mavenVersion>

<assertjVersion>3.26.3</assertjVersion>
<mavenPluginTestingVersion>4.0.0-beta-2-SNAPSHOT</mavenPluginTestingVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
import org.apache.maven.api.model.Model;
import org.apache.maven.api.model.Organization;
import org.apache.maven.api.plugin.testing.stubs.ArtifactStub;
import org.apache.maven.api.plugin.testing.stubs.ProducedArtifactStub;
import org.apache.maven.api.plugin.testing.stubs.ProjectStub;
import org.apache.maven.api.plugin.testing.stubs.SessionMock;
import org.apache.maven.api.services.DependencyResolver;
Expand Down Expand Up @@ -1047,7 +1048,7 @@ private ProjectStub getDummyProject() {
.build())
.build();
project.setModel(model);
ArtifactStub artifact = new ArtifactStub();
ProducedArtifactStub artifact = new ProducedArtifactStub();
artifact.setGroupId("org.apache.dummy");
artifact.setArtifactId("dummy");
artifact.setVersion("0.1.1");
Expand Down Expand Up @@ -1103,7 +1104,7 @@ private Project getDummyProjectWithSnapshot() {
.build())
.build());

ArtifactStub artifact = new ArtifactStub();
ProducedArtifactStub artifact = new ProducedArtifactStub();
artifact.setGroupId("org.apache.dummy");
artifact.setArtifactId("dummy");
artifact.setVersion("0.1.1");
Expand Down Expand Up @@ -1378,7 +1379,7 @@ public void setOptional(boolean optional) {
}

@Override
public DependencyCoordinate toCoordinate() {
public DependencyCoordinates toCoordinates() {
return null;
}

Expand Down

0 comments on commit eda97cc

Please sign in to comment.