Example usage for org.apache.maven.project.artifact PluginArtifact getArtifactId

List of usage examples for org.apache.maven.project.artifact PluginArtifact getArtifactId

Introduction

In this page you can find the example usage for org.apache.maven.project.artifact PluginArtifact getArtifactId.

Prototype

public String getArtifactId() 

Source Link

Usage

From source file:org.jboss.errai.forge.util.VersionFacet.java

License:Apache License

/**
 * @see #resolveVersion(String, String)/*w w  w  .ja v a2s  . com*/
 */
public String resolveVersion(PluginArtifact plugin) {
    return resolveVersion(plugin.getGroupId(), plugin.getArtifactId());
}