artifactory mvn deploy

창고 2008/05/09 13:23
pom.xml
<distributionManagement>
  <!-- use the following if you're not using a snapshot version. -->
  <repository>
    <id>repo</id>
    <url>http://203.253.213.219:8081/artifactory/EXACT_PATH</url>
  </repository>
</distributionManagement>

~/.m2/settings.xml

<settings>
    <servers>
        <server>
            <id>repo</id>
            <username>admin</username>
            <password>password1</password>
        </server>
    </servers>
</settings>

Posted by 두렁청해