org.codehaus.mojo.buildhelper.ReleasedVersionMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of build-helper-maven-plugin Show documentation
Show all versions of build-helper-maven-plugin Show documentation
This plugin contains various small independent goals to assist with Maven build lifecycle
package org.codehaus.mojo.buildhelper;
/*
* The MIT License
*
* Copyright (c) 2004, The Codehaus
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is furnished to do
* so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
import java.util.List;
import org.apache.maven.artifact.ArtifactUtils;
import org.apache.maven.artifact.factory.ArtifactFactory;
import org.apache.maven.artifact.metadata.ArtifactMetadataRetrievalException;
import org.apache.maven.artifact.metadata.ArtifactMetadataSource;
import org.apache.maven.artifact.repository.ArtifactRepository;
import org.apache.maven.artifact.versioning.ArtifactVersion;
import org.apache.maven.plugins.annotations.Component;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
/**
* Resolve the latest released version of this project. This mojo sets the following properties:
*
*
* [propertyPrefix].version
* [propertyPrefix].majorVersion
* [propertyPrefix].minorVersion
* [propertyPrefix].incrementalVersion
*
*
* Where the propertyPrefix is the string set in the mojo parameter.
*
* @author Robert Scholte
* @since 1.6
*/
@Mojo( name = "released-version", defaultPhase = LifecyclePhase.VALIDATE, threadSafe = true )
public class ReleasedVersionMojo
extends AbstractDefinePropertyMojo
{
/**
* The artifact metadata source to use.
*/
@Component
private ArtifactMetadataSource artifactMetadataSource;
@Component
private ArtifactFactory artifactFactory;
@Parameter( defaultValue = "${localRepository}", readonly = true )
private ArtifactRepository localRepository;
@Parameter( defaultValue = "${project.remoteArtifactRepositories}", readonly = true )
private List remoteArtifactRepositories;
/**
* Prefix string to use for the set of version properties.
*/
@Parameter( defaultValue = "releasedVersion" )
private String propertyPrefix;
private void defineVersionProperty( String name, String value )
{
defineProperty( propertyPrefix + '.' + name, value );
}
private void defineVersionProperty( String name, int value )
{
defineVersionProperty( name, Integer.toString( value ) );
}
@SuppressWarnings( "unchecked" )
public void execute()
{
org.apache.maven.artifact.Artifact artifact =
artifactFactory.createArtifact( getProject().getGroupId(), getProject().getArtifactId(), "", "", "" );
try
{
ArtifactVersion releasedVersion = null;
List versions =
artifactMetadataSource.retrieveAvailableVersions( artifact, localRepository,
remoteArtifactRepositories );
for ( ArtifactVersion version : versions )
{
if ( !ArtifactUtils.isSnapshot( version.toString() )
&& ( releasedVersion == null || version.compareTo( releasedVersion ) > 0 ) )
{
releasedVersion = version;
}
}
if ( releasedVersion != null )
{
// Use ArtifactVersion.toString(), the major, minor and incrementalVersion return all an int.
String releasedVersionValue = releasedVersion.toString();
// This would not always reflect the expected version.
int dashIndex = releasedVersionValue.indexOf( '-' );
if ( dashIndex >= 0 )
{
releasedVersionValue = releasedVersionValue.substring( 0, dashIndex );
}
defineVersionProperty( "version", releasedVersionValue );
defineVersionProperty( "majorVersion", releasedVersion.getMajorVersion() );
defineVersionProperty( "minorVersion", releasedVersion.getMinorVersion() );
defineVersionProperty( "incrementalVersion", releasedVersion.getIncrementalVersion() );
}
}
catch ( ArtifactMetadataRetrievalException e )
{
if ( getLog().isWarnEnabled() )
{
getLog().warn( "Failed to retrieve artifacts metadata, cannot resolve the released version" );
}
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy