JFrog Artifactory is a tool designed to store the binary output of the build process for use in distribution and deployment. Artifactory provides support for a number of package formats such as Maven, Debian, NPM, Helm, Ruby, Python, and Docker.
This thread describes on how to get Maven Settings:
- Choose the Following Options, as shown below:
- Press Generate Settings and down load settings.
- Copy the distributionManagement from JFROG "SET ME UP" to the pom.xml
<distributionManagement>
<repository>
<id>central</id>
<name>mindtelligent-releases</name>
<url>https://localhost:1111/libs-snapshot</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<name>mindtelligent-snapshots</name>
<url>https://localhost:1111/libs-snapshot</url>
</snapshotRepository>
</distributionManagement>