Skip to content

Commit

Permalink
Update/reformat POM
Browse files Browse the repository at this point in the history
  • Loading branch information
baffles committed Oct 12, 2016
1 parent 84db236 commit 1b2f2c7
Showing 1 changed file with 74 additions and 72 deletions.
146 changes: 74 additions & 72 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,82 +1,84 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>1.509.3</version><!-- which version of Jenkins is this plugin built against? Users must have at least this Jenkins version to use this plugin. -->
<relativePath />
</parent>
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>1.509.3</version><!-- which version of Jenkins is this plugin built against? Users must have at least this Jenkins version to use this plugin. -->
<relativePath />
</parent>

<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>codedx</artifactId>
<name>Code Dx Plugin</name>
<version>2.2-SNAPSHOT</version>
<packaging>hpi</packaging>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>codedx</artifactId>
<name>Code Dx Plugin</name>
<version>2.2-SNAPSHOT</version>
<packaging>hpi</packaging>
<url>https://wiki.jenkins-ci.org/display/JENKINS/Code+Dx+Plugin</url>

<licenses>
<license>
<name>Apache License</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.html</url>
</license>
</licenses>

<!-- get every artifact through repo.jenkins-ci.org, which proxies all the artifacts that we need -->
<repositories>
<repository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
</repository>
</repositories>
<scm>
<connection>scm:git:ssh://github.com/jenkinsci/codedx-plugin.git</connection>
<developerConnection>scm:git:ssh://git@github.com/jenkinsci/codedx-plugin.git</developerConnection>
<url>https://github.com/jenkinsci/codedx-plugin</url>
<tag>HEAD</tag>
</scm>

<pluginRepositories>
<pluginRepository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
</pluginRepository>
</pluginRepositories>
<developers>
<developer>
<id>samuelbjohnson</id>
<name>Samuel B. Johnson</name>
<email>samuel.johnson@codedx.com</email>
</developer>
<developer>
<id>baf</id>
<name>Robert Ferris</name>
<email>robert.ferris@codedx.com</email>
</developer>
</developers>

<dependencies>
<licenses>
<license>
<name>Apache License</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.html</url>
</license>
</licenses>

<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.3</version>
</dependency>
<distributionManagement>
<repository>
<id>repo.jenkins-ci.org</id>
<url>https://repo.jenkins-ci.org/releases</url>
</repository>
</distributionManagement>

<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.3.5</version>
</dependency>
<!-- get every artifact through repo.jenkins-ci.org, which proxies all the artifacts that we need -->
<repositories>
<repository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
</repository>
</repositories>

<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
<version>4.3.5</version>
</dependency>
<pluginRepositories>
<pluginRepository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
</pluginRepository>
</pluginRepositories>

<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.3</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.3.5</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
<version>4.3.5</version>
</dependency>
</dependencies>


<scm>
<connection>scm:git:ssh://github.com/jenkinsci/codedx-plugin.git</connection>
<developerConnection>scm:git:ssh://git@github.com/jenkinsci/codedx-plugin.git</developerConnection>
<url>https://github.com/jenkinsci/codedx-plugin</url>
<tag>HEAD</tag>
</scm>

<url>https://wiki.jenkins-ci.org/display/JENKINS/Code+Dx+Plugin</url>

<developers>
<developer>
<id>samuelbjohnson</id>
<name>Samuel B. Johnson</name>
<email>samuel.johnson@codedx.com</email>
</developer>
<developer>
<id>baf</id>
<name>Robert Ferris</name>
<email>robert.ferris@codedx.com</email>
</developer>
</developers>
</project>
</project>

0 comments on commit 1b2f2c7

Please sign in to comment.