Sunday, November 24, 2019

JFROG Artifactory. Generate Maven Settings

JFROG Artifactory. Generate Maven Settings


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:

  • Navigate to the JFROG Repository Home >> lib-snapshots>> Set ME Up









  • Choose the Following Options, as shown below:






























  • Press Generate Settings and down load settings.
  • Copy the settings.xml to ~/.m2 on your machine where you will build the code.



















  • 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>










Amazon Bedrock and AWS Rekognition comparison for Image Recognition

 Both Amazon Bedrock and AWS Rekognition are services provided by AWS, but they cater to different use cases, especially when it comes to ...