Skip to content

Commit

Permalink
Bump version to 3.0.0-M5-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-o committed Jan 2, 2022
1 parent 53d6743 commit eca939b
Show file tree
Hide file tree
Showing 17 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion maven-release-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.apache.maven.release</groupId>
<artifactId>maven-release</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0-M5-SNAPSHOT</version>
</parent>

<artifactId>maven-release-api</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* Additional interface for ReleasePhase if the phase generates resources, which should be cleaned up afterwards.
*
* @author Robert Scholte
* @since 3.0.0
* @since 3.0.0-M5
*/
public interface ResourceGenerator
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* <p>NamingPolicyRequest class.</p>
*
* @author Robert Scholte
* @since 3.0.0
* @since 3.0.0-M5
*/
public class NamingPolicyRequest
{
Expand Down
4 changes: 2 additions & 2 deletions maven-release-manager/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.maven.release</groupId>
<artifactId>maven-release</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0-M5-SNAPSHOT</version>
</parent>

<artifactId>maven-release-manager</artifactId>
Expand All @@ -35,7 +35,7 @@
<dependency>
<groupId>org.apache.maven.release</groupId>
<artifactId>maven-release-api</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0-M5-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* <p>ReleaseDescriptorBuilder class.</p>
*
* @author Robert Scholte
* @since 3.0.0
* @since 3.0.0-M5
*/
public class ReleaseDescriptorBuilder
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* <p>DefaultNamingPolicy class.</p>
*
* @author Robert Scholte
* @since 3.0.0
* @since 3.0.0-M5
*/
@Component( role = NamingPolicy.class, hint = "default" )
public class DefaultNamingPolicy implements NamingPolicy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* <p>DefaultStrategy class.</p>
*
* @author Robert Scholte
* @since 3.0.0
* @since 3.0.0-M5
*/
public class DefaultStrategy implements Strategy
{
Expand Down
8 changes: 4 additions & 4 deletions maven-release-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.maven.release</groupId>
<artifactId>maven-release</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0-M5-SNAPSHOT</version>
</parent>

<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -54,7 +54,7 @@
<dependency>
<groupId>org.apache.maven.release</groupId>
<artifactId>maven-release-manager</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0-M5-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
Expand Down Expand Up @@ -85,13 +85,13 @@
<dependency>
<groupId>org.apache.maven.release</groupId>
<artifactId>maven-release-oddeven-policy</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0-M5-SNAPSHOT</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.maven.release</groupId>
<artifactId>maven-release-semver-policy</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0-M5-SNAPSHOT</version>
<optional>true</optional>
</dependency>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public abstract class AbstractReleaseMojo
* The role-hint for the {@link org.apache.maven.shared.release.strategy.Strategy}
* implementation used to specify the phases per goal.
*
* @since 3.0.0
* @since 3.0.0-M5
* @see org.apache.maven.shared.release.strategies.DefaultStrategy
*/
@Parameter( defaultValue = "default", property = "releaseStrategyId" )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public abstract class AbstractScmReleaseMojo
* A workItem for SCMs like RTC, TFS etc, that may require additional
* information to perform a pushChange operation.
*
* @since 3.0.0
* @since 3.0.0-M5
*/
@Parameter( property = "workItem" )
private String workItem;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ public class BranchReleaseMojo
* The role-hint for the {@link org.apache.maven.shared.release.policy.version.VersionPolicy}
* implementation used to calculate the project versions.
*
* @since 3.0.0
* @since 3.0.0-M5
* @see org.apache.maven.shared.release.policies.DefaultVersionPolicy
*/
@Parameter( defaultValue = "default", property = "projectVersionPolicyId" )
Expand All @@ -204,7 +204,7 @@ public class BranchReleaseMojo
* The role-hint for the {@link org.apache.maven.shared.release.policy.naming.NamingPolicy}
* implementation used to calculate the project names.
*
* @since 3.0.0
* @since 3.0.0-M5
* @see org.apache.maven.shared.release.policies.DefaultNamingPolicy
*/
@Parameter( property = "projectNamingPolicyId" )
Expand Down Expand Up @@ -233,7 +233,7 @@ public class BranchReleaseMojo
* Currently only implemented with svn scm. Enable the {@code --pin-externals} option in
* {@code svn copy} command which is new in Subversion 1.9.
*
* @since 3.0.0
* @since 3.0.0-M5
*/
@Parameter( defaultValue = "false", property = "pinExternals" )
private boolean pinExternals;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ public class PrepareReleaseMojo
/**
* Signs SCM tag when possible, for example when using the git-exe the '--sign' argument is used.
*
* @since 3.0.0
* @since 3.0.0-M5
*/
@Parameter( property = "signTag" )
private boolean signTag = false;
Expand Down Expand Up @@ -241,7 +241,7 @@ public class PrepareReleaseMojo
* The role-hint for the {@link org.apache.maven.shared.release.policy.naming.NamingPolicy}
* implementation used to calculate the project branch and tag names.
*
* @since 3.0.0
* @since 3.0.0-M5
* @see org.apache.maven.shared.release.policies.DefaultNamingPolicy
*/
@Parameter( property = "projectNamingPolicyId" )
Expand All @@ -261,7 +261,7 @@ public class PrepareReleaseMojo
* <li><code>releaseLabel</code> - The release version of the root project.
* </ul>
*
* @since 3.0.0
* @since 3.0.0-M5
*/
@Parameter( defaultValue = "@{prefix} prepare release @{releaseLabel}", property = "scmReleaseCommitComment" )
private String scmReleaseCommitComment = "@{prefix} prepare release @{releaseLabel}";
Expand All @@ -280,7 +280,7 @@ public class PrepareReleaseMojo
* <li><code>releaseLabel</code> - The release version of the root project.
* </ul>
*
* @since 3.0.0
* @since 3.0.0-M5
*/
@Parameter(
defaultValue = "@{prefix} prepare for next development iteration",
Expand All @@ -300,7 +300,7 @@ public class PrepareReleaseMojo
* <li>"extensions" or "4": resolve extension dependencies</li>
* </ul>
*
* @since 3.0.0
* @since 3.0.0-M5
*/
@Parameter( property = "autoResolveSnapshots" )
private String autoResolveSnapshots;
Expand All @@ -309,7 +309,7 @@ public class PrepareReleaseMojo
* Currently only implemented with svn scm. Enable the {@code --pin-externals} option in
* {@code svn copy} command which is new in Subversion 1.9.
*
* @since 3.0.0
* @since 3.0.0-M5
*/
@Parameter( defaultValue = "false", property = "pinExternals" )
private boolean pinExternals;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class RollbackReleaseMojo
* <li><code>releaseLabel</code> - The release version of the root project.
* </ul>
*
* @since 3.0.0
* @since 3.0.0-M5
*/
@Parameter(
defaultValue = "@{prefix} rollback the release of @{releaseLabel}",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public class UpdateVersionsMojo
/**
* The role-hint for the VersionPolicy implementation used to calculate the project versions.
*
* @since 3.0.0
* @since 3.0.0-M5
*/
@Parameter( defaultValue = "default", property = "projectVersionPolicyId" )
private String projectVersionPolicyId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.maven.release</groupId>
<artifactId>maven-release</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0-M5-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion maven-release-policies/maven-release-semver-policy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.maven.release</groupId>
<artifactId>maven-release</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0-M5-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>

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

<groupId>org.apache.maven.release</groupId>
<artifactId>maven-release</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0-M5-SNAPSHOT</version>
<packaging>pom</packaging>

<name>Maven Release</name>
Expand Down

0 comments on commit eca939b

Please sign in to comment.