Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Require Maven 3.6.3+ #104

Merged
merged 1 commit into from
Feb 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This is the [wagon-maven-plugin](http://www.mojohaus.org/wagon-maven-plugin/).

## Maintained versions

Wagen Maven Plugin requires Maven 3.2.5+ and JDK 1.8+
Wagen Maven Plugin requires Maven 3.6.3+ and JDK 8+

However, we maintain the latest Plugin version with the latest Maven.

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
</licenses>

<properties>
<maven.api.version>3.2.5</maven.api.version>
<maven.api.version>3.6.3</maven.api.version>
<mojo.java.target>8</mojo.java.target>
<wagon.api.version>3.4.0</wagon.api.version>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import org.junit.runner.RunWith;

@RunWith( MavenJUnitTestRunner.class )
@MavenVersions( { "3.2.5" } )
@MavenVersions( { "3.6.3" } )
public class WagonMojoFtpBasicIT
{
@Rule
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/codehaus/mojo/wagon/WagonMojoHttpIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import org.junit.runner.RunWith;

@RunWith( MavenJUnitTestRunner.class )
@MavenVersions( { "3.2.5" } )
@MavenVersions( { "3.6.3" } )
public class WagonMojoHttpIT extends AbstractJettyIT
{
@Rule
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import org.junit.runner.RunWith;

@RunWith( MavenJUnitTestRunner.class )
@MavenVersions( { "3.2.5" } )
@MavenVersions( { "3.6.3" } )
public class WagonMojoHttpSettingsIT extends AbstractJettyIT
{
@Rule
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/codehaus/mojo/wagon/WagonMojoSshIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import io.takari.maven.testing.executor.junit.MavenJUnitTestRunner;

@RunWith( MavenJUnitTestRunner.class )
@MavenVersions( { "3.2.5" } )
@MavenVersions( { "3.6.3" } )
public class WagonMojoSshIT
{
@Rule
Expand Down