blob: b1fb5cee4511933ec8051b6c39f3cd4c14a6c131 [file] [log] [blame]
----
Deploy an artifact with classifier
------
Allan Ramirez
------
June 2006
------
~~ 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.
~~ NOTE: For help with the syntax of this file, see:
~~ http://maven.apache.org/doxia/references/apt-format.html
Deploy an artifact with classifier
Classifiers are the additional text given to describe an artifact.
+---+
artifact-name-1.0-bin.jar
artifact-name-1.0-dev.jar
artifact-name-1.0-prod.jar
+---+
From the above artifact names, classifiers can be located between the version and extension name of the artifact.
*<<<bin>>> is used to describe that the artifact is a binary.
*<<<dev>>> is used to describe that the artifact is for development.
*<<<prod>>> is used to describe that the artifact is for production.
[]
To add classifier into your artifact for your deployment, set the text to the <<classifier>> parameter.
+---+
mvn deploy:deploy-file -Durl=file:///C:/m2-repo \
-DrepositoryId=some.id \
-Dfile=path-to-your-artifact-jar \
-DpomFile=path-to-your-pom.xml \
-Dclassifier=bin
+---+