Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added work-around for Jenkins issue INFRA-588.
Added work-around for https://issues.jenkins-ci.org/browse/INFRA-588.

Fixed the formatting of pom.xml.
  • Loading branch information
reprogrammer committed Apr 14, 2016
1 parent 7de2c7a commit 9b56862
Showing 1 changed file with 35 additions and 7 deletions.
42 changes: 35 additions & 7 deletions pom.xml
Expand Up @@ -30,9 +30,9 @@ the License.

<name>Google Deployment Manager Jenkins Plugin</name>
<description>
This plugin provides a create and delete Google Cloud Platform resources
using Google Cloud Deployment Manager from within Jenkins jobs.
</description>
This plugin provides a create and delete Google Cloud Platform resources
using Google Cloud Deployment Manager from within Jenkins jobs.
</description>
<licenses>
<license>
<name>The Apache V2 License</name>
Expand Down Expand Up @@ -66,11 +66,11 @@ the License.

<scm>
<connection>
scm:git:git://github.com/jenkinsci/${project.gitProjectId}.git
</connection>
scm:git:git://github.com/jenkinsci/${project.gitProjectId}.git
</connection>
<developerConnection>
scm:git:git@github.com:jenkinsci/${project.gitProjectId}.git
</developerConnection>
scm:git:git@github.com:jenkinsci/${project.gitProjectId}.git
</developerConnection>
<url>http://github.com/jenkinsci/${project.gitProjectId}</url>
<tag>HEAD</tag>
</scm>
Expand All @@ -85,9 +85,37 @@ the License.
<configLocation>google_checks.xml</configLocation>
</configuration>
</plugin>
<!-- work-around for https://issues.jenkins-ci.org/browse/INFRA-588 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.6</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-http</artifactId>
<version>2.10</version>
<type>jar</type>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>

<!-- work-around for https://issues.jenkins-ci.org/browse/INFRA-588 -->
<distributionManagement>
<repository>
<id>maven.jenkins-ci.org</id>
<name>jenkinsci-releases</name>
<url>https://repo.jenkins-ci.org/releases</url>
</repository>
<snapshotRepository>
<id>maven.jenkins-ci.org</id>
<name>jenkinsci-snapshots</name>
<url>https://repo.jenkins-ci.org/snapshots</url>
</snapshotRepository>
</distributionManagement>

<dependencies>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
Expand Down

0 comments on commit 9b56862

Please sign in to comment.