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>










Sentiment Analysis using NLP - Java SDK for Amazon Bedrock/Amazon Sagemaker

Sentiment analysis is a natural language processing (NLP) technique used to determine the sentiment or emotional tone expressed in a piece o...