RSS
 

Posts Tagged ‘repository’

Jenkins/Hudson Maven Repositories

17 Jan



Some locations to keep in mind when you work with Hudson:


Update

After recent Jenkins fork the situation has now changed (many thanks to @abayer and @hudsonci for the info!)

 
 

Hudson and Artifactory Maven repository

17 Jul

For a long time I was sure there’s no Hudson Maven repository.

I was wrong:

<dependency>
    <groupid>org.jvnet.hudson.main</groupid>
    <artifactid>hudson-war</artifactid>
    <version>1.373</version>
    <type>war</type>
</dependency>
<dependency>
    <groupid>org.jvnet.hudson.plugins</groupid>
    <artifactid>greenballs</artifactid>
    <version>1.6</version>
    <type>hpi</type>
</dependency>
<dependency>
    <groupid>org.jvnet.hudson.plugins</groupid>
    <artifactid>artifactory</artifactid>
    <version>1.2.0</version>
    <type>hpi</type>
</dependency>

Similarly, Artifactory:

<dependency>
    <groupid>org.artifactory</groupid>
    <artifactid>artifactory-web-war</artifactid>
    <version>2.2.5</version>
    <type>war</type>
</dependency>

And Maven itself:

<dependency>
    <groupId>org.apache.maven</groupId>
    <artifactId>apache-maven</artifactId>
    <version>2.2.1</version>
    <classifier>bin</classifier>
    <type>zip</type>
</dependency>

Why would one want to get Hudson, Artifactory and Maven distribution through Maven?
In our case, we create a Tomcat setup with Hudson, Artifactory and Maven already installed and configured, I’ll write about this project later.