com.simpligility.maven.plugins.android.configuration.VersionElementParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-maven-plugin Show documentation
Show all versions of android-maven-plugin Show documentation
Maven Plugin for Android Development
The newest version!
package com.simpligility.maven.plugins.android.configuration;
import org.apache.maven.plugin.MojoExecutionException;
/**
* Interface for parsing version names into version elements.
*
* @author Wang Xuerui - [email protected]
*
*/
public interface VersionElementParser
{
int[] parseVersionElements( final String versionName ) throws MojoExecutionException;
}