Skip to content

Commit

Permalink
Define dependencies in dependencyManagement and remove scm/tag
Browse files Browse the repository at this point in the history
  • Loading branch information
aldaris committed Oct 20, 2014
1 parent f14fca0 commit 02ebce9
Showing 1 changed file with 27 additions and 16 deletions.
43 changes: 27 additions & 16 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,32 +39,43 @@
<connection>scm:git:ssh://github.com/jenkinsci/hipchat-plugin.git</connection>
<developerConnection>scm:git:ssh://[email protected]/jenkinsci/hipchat-plugin.git</developerConnection>
<url>https://github.com/jenkinsci/hipchat-plugin</url>
<tag>hipchat-0.1.5</tag>
</scm>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>3.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.9</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.0.4</version>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>3.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.9</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.0.4</version>
<scope>provided</scope>
</dependency>
</dependencies>

Expand Down

0 comments on commit 02ebce9

Please sign in to comment.