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

Bump org.codehaus.mojo:mojo-parent from 77 to 78 #207

Merged
merged 2 commits into from
Jan 25, 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
14 changes: 6 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.codehaus.mojo</groupId>
<artifactId>mojo-parent</artifactId>
<version>77</version>
<version>78</version>
</parent>

<artifactId>buildnumber-maven-plugin</artifactId>
Expand Down Expand Up @@ -67,7 +67,7 @@
</developers>

<prerequisites>
<maven>3.5.4</maven>
<maven>${mavenVersion}</maven>
</prerequisites>

<scm>
Expand All @@ -84,9 +84,8 @@

<properties>
<maven.scm.version>2.0.1</maven.scm.version>
<maven.api.version>3.5.4</maven.api.version>
<mojo.java.target>8</mojo.java.target>
<maven.it.version>3.5.4</maven.it.version>
<maven.it.version>${mavenVersion}</maven.it.version>
<takari.plugin.testing.version>3.0.0</takari.plugin.testing.version>
<takari-lifecycle-plugin.version>2.0.8</takari-lifecycle-plugin.version>
<test.excludes>**/it/**</test.excludes>
Expand All @@ -98,19 +97,19 @@
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-settings</artifactId>
<version>${maven.api.version}</version>
<version>${mavenVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>${maven.api.version}</version>
<version>${mavenVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>${maven.api.version}</version>
<version>${mavenVersion}</version>
<scope>provided</scope>
</dependency>

Expand Down Expand Up @@ -289,7 +288,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.4.1</version>
<executions>
<execution>
<id>enforce-versions</id>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import org.junit.runner.RunWith;

@RunWith( MavenJUnitTestRunner.class )
@MavenVersions( { "3.5.4" } )
@MavenVersions( { "3.6.3" } )
public class BuildNumberMojoTest
{
private static final Pattern SVN_VERSION_PATTERN = Pattern.compile( "svn, version (\\d+)\\.(\\d+)\\." );
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.5.4" } )
@MavenVersions( { "3.6.3" } )
public class CreateMetadataMojoTest
{
@Rule
Expand Down