Quantcast
Viewing all articles
Browse latest Browse all 26

Apache Ivy – Publish to Artifactory

Previously we have talked about how to work with Apache Ivy and Artifactory.

 

The next thing i would like to share is to publish your built .jar file to Artifactory.

1. Login to Artifactory web portal and create a new repository, click on the Admin tab and select Repository on the left menu side bar.
Image may be NSFW.
Clik here to view.
apache-ivy-publish-to-artifactory-1

 

2. Create a new local repository and named it test-snapshot-local.
Image may be NSFW.
Clik here to view.
apache-ivy-publish-to-artifactory-2

 

3. Edit the ivysettings.xml to setup the artifact pattern for publishing.

<ivysettings>
  <settings defaultResolver="main" />
  <credentials host="localhost" realm="Artifactory Realm" username="admin" passwd="password" />
  <resolvers>
    <chain name="main">
      <ibiblio name="public" m2compatible="true" root="http://localhost:8081/artifactory/repo" />
      <url name="publish">
        <!-- You can use  m2compatible="true" instead of specifying your own pattern -->
        <ivy pattern="http://localhost:8081/artifactory/test-snapshot-local/[organization]/[module]/[revision]/ivy-[revision].xml" />
        <artifact pattern="http://localhost:8081/artifactory/test-snapshot-local/[organization]/[module]/[revision]/[artifact].[ext]"/>
      </url>
    </chain>
  </resolvers>
</ivysettings>

 

4. Add the publish Ant target in build.xml.

<project name="hello-world-ant" basedir="." default="main" xmlns:ivy="antlib:org.apache.ivy.ant">

  <!-- Ant properties -->
  <property name="src.dir"     value="src"/>
  <property name="lib.dir"     value="lib"/>
  <property name="build.dir"   value="build"/>
  <property name="classes.dir" value="${build.dir}/classes"/>
  <property name="jar.dir"     value="${build.dir}/jar"/>
  <property name="main-class"  value="com.eureka.HelloWorld"/>

  <ivy:settings file="./ivysettings.xml" />

  <target name="clean">
    <delete dir="${build.dir}"/>
    <delete dir="${lib.dir}"/>
  </target>

  <target name="resolve">
    <ivy:retrieve/>
  </target>    
    
  <target name="report" depends="resolve">
    <ivy:report todir="${build.dir}"/>
  </target>

  <target name="compile" depends="report">
    <mkdir dir="${classes.dir}"/>
    <javac srcdir="${src.dir}" destdir="${classes.dir}"/>
  </target>

  <target name="jar" depends="compile">
    <mkdir dir="${jar.dir}"/>
    <jar destfile="${jar.dir}/${ant.project.name}.jar" basedir="${classes.dir}">
      <manifest>
        <attribute name="Main-Class" value="${main-class}"/>
      </manifest>
    </jar>
  </target>

  <target name="run" depends="jar">
    <java jar="${jar.dir}/${ant.project.name}.jar" fork="true"/>
  </target>

  <target name="publish" depends="jar">
    <ivy:publish resolver="publish" overwrite="true" artifactspattern="${jar.dir}/[artifact].[ext]" />
  </target>

  <target name="clean-build" depends="clean,jar"/>

  <target name="main" depends="clean,run"/>

</project>

 

5. Build and publish your project by running ant publish.
Image may be NSFW.
Clik here to view.
apache-ivy-publish-to-artifactory-3

 

6. Verify the setup in Artifactory.
Image may be NSFW.
Clik here to view.
apache-ivy-publish-to-artifactory-4

 

Done =)


Filed under: Ant, Apache Ivy Tagged: Ant, Apache Ivy, Artifactory, Java Image may be NSFW.
Clik here to view.
Image may be NSFW.
Clik here to view.

Viewing all articles
Browse latest Browse all 26

Trending Articles