Author: rfscholte Date: Tue Jul 14 19:25:56 2015 New Revision: 1691063 URL: http://svn.apache.org/r1691063 Log: In the end it should be as simple as this to be used as input
Added: maven/shared/trunk/maven-artifact-transfer/src/main/java/org/apache/maven/shared/artifact/ArtifactCoordinate.java Added: maven/shared/trunk/maven-artifact-transfer/src/main/java/org/apache/maven/shared/artifact/ArtifactCoordinate.java URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-artifact-transfer/src/main/java/org/apache/maven/shared/artifact/ArtifactCoordinate.java?rev=1691063&view=auto ============================================================================== --- maven/shared/trunk/maven-artifact-transfer/src/main/java/org/apache/maven/shared/artifact/ArtifactCoordinate.java (added) +++ maven/shared/trunk/maven-artifact-transfer/src/main/java/org/apache/maven/shared/artifact/ArtifactCoordinate.java Tue Jul 14 19:25:56 2015 @@ -0,0 +1,144 @@ +package org.apache.maven.shared.artifact; + +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * Common usage of an ArtifactCoordinate for a Mojo + * + * <pre> + * @Parameter + * private ArtifactCoordinate[] artifacts; + * </pre> + * + * and + * + * <pre> + * private ArtifactCoordinate artifact = new ArtifactCoordinate(); + * + * @Parameter( property = "groupId" ) + * private String groupId; + * + * @Parameter( property = "artifactId" ) + * private String artifactId; + * + * @Parameter( property = "version" ) + * private String version; + * + * @Parameter( property = "classifier" ) + * private String classifier; + * + * @Parameter( property = "type" ) + * private String type; + * + * public void setGroupId( String groupId ) + * { + * this.artifact.setGroupId( groupId ); + * } + * + * public void setArtifactId( String artifactId ) + * { + * this.artifact.setArtifactId( artifactId ); + * } + * + * public void setVersion( String version ) + * { + * this.artifact.setVersion( version ); + * } + * + * public void setClassifier( String classifier ); + * { + * this.artifact.setClassifier( classifier ); + * } + * + * public void setType( String type ) + * { + * this.artifact.setType( type ); + * } + * </pre> + * + * <strong>Note: </strong> type is not the same as extension! + * {@link org.apache.maven.artifact.handler.ArtifactHandler}s are used to map a type to an extension. + * + * + * @author Robert Scholte + * @since 3.0 + */ +public class ArtifactCoordinate +{ + private String groupId; + + private String artifactId; + + private String version; + + private String type; + + private String classifier; + + public final String getGroupId() + { + return groupId; + } + + public final void setGroupId( String groupId ) + { + this.groupId = groupId; + } + + public final String getArtifactId() + { + return artifactId; + } + + public final void setArtifactId( String artifactId ) + { + this.artifactId = artifactId; + } + + public final String getVersion() + { + return version; + } + + public final void setVersion( String version ) + { + this.version = version; + } + + public final String getType() + { + return type; + } + + public final void setType( String type ) + { + this.type = type; + } + + public final String getClassifier() + { + return classifier; + } + + public final void setClassifier( String classifier ) + { + this.classifier = classifier; + } +}