Monday, November 25, 2019

JFROG Artifactory: Deploy JAR Files manually

JFROG Artifactory: Deploy JAR Files manually


  • Navigate to the JFROG and choose the Target Repository where you want to deploy and Click on Deploy

 

  • Drag and Drop the JAR File as shown below.



  • Enter the Group ID, Artifact ID and Version and click Deploy




This will deploy the artifact.

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>










OCI Knowledge Series: OCI Infrastructure components

  Oracle Cloud Infrastructure (OCI) provides a comprehensive set of infrastructure services that enable you to build and run a wide range of...