Skip to content

Commit

Permalink
Fix problem for releasing a new version INFRA-588
Browse files Browse the repository at this point in the history
And also other dependencies
  • Loading branch information
pskumar448 committed Apr 24, 2016
1 parent 0768500 commit 74c6efc
Showing 1 changed file with 69 additions and 1 deletion.
70 changes: 69 additions & 1 deletion pom.xml
Expand Up @@ -12,7 +12,14 @@
<packaging>hpi</packaging>
<url>https://wiki.jenkins-ci.org/display/JENKINS/Build+Graph+View+Plugin</url>

<developers>
<properties>
<maven-release-plugin.version>2.5.1</maven-release-plugin.version>
<maven-hpi-plugin.version>1.112</maven-hpi-plugin.version>
<maven-deploy-plugin.version>2.6</maven-deploy-plugin.version>
<wagon-http.version>2.10</wagon-http.version>
</properties>

<developers>
<developer>
<id>ndeloof</id>
<name>Nicolas De Loof</name>
Expand All @@ -21,6 +28,10 @@
<id>gregory144</id>
<name>Greg Gross</name>
</developer>
<developer>
<id>pskumar448</id>
<name>Suresh Kumar</name>
</developer>
</developers>

<scm>
Expand Down Expand Up @@ -61,6 +72,16 @@
<artifactId>promoted-builds</artifactId>
<version>2.17</version>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
</exclusion>
<exclusion>
<groupId>org.sonatype.sisu</groupId>
<artifactId>sisu-guice</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand All @@ -72,6 +93,53 @@

</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.jenkins-ci.tools</groupId>
<artifactId>maven-hpi-plugin</artifactId>
<version>${maven-hpi-plugin.version}</version>
<extensions>true</extensions>
<executions>
<execution>
<goals>
<goal>generate-taglib-interface</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${maven-release-plugin.version}</version>
<configuration>
<goals>deploy</goals>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven-deploy-plugin.version}</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-http</artifactId>
<version>${wagon-http.version}</version>
<type>jar</type>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>

<distributionManagement>
<repository>
<id>maven.jenkins-ci.org</id>
<url>https://repo.jenkins-ci.org/releases/</url>
</repository>
</distributionManagement>

<repositories>
<repository>
<id>repo.jenkins-ci.org</id>
Expand Down

0 comments on commit 74c6efc

Please sign in to comment.