Skip to content

Commit

Permalink
Massaging the POM to reues what I do elsewhere.
Browse files Browse the repository at this point in the history
  • Loading branch information
kohsuke committed Jan 3, 2013
1 parent db9f0ef commit a4deede
Showing 1 changed file with 16 additions and 31 deletions.
47 changes: 16 additions & 31 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
<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>
<groupId>org.kohsuke</groupId>
<parent>
<groupId>org.kohsuke</groupId>
<artifactId>pom</artifactId>
<version>4</version>
</parent>
<artifactId>maven-junit-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>1.11-SNAPSHOT</version>
Expand All @@ -16,14 +20,6 @@

<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
Expand All @@ -38,13 +34,6 @@
</executions>
</plugin>
</plugins>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>1.0-beta-6</version>
</extension>
</extensions>
</build>

<dependencies>
Expand Down Expand Up @@ -109,20 +98,16 @@
</repositories>

<distributionManagement>
<repository>
<id>maven.hudson-labs.org</id>
<url>http://maven.jenkins-ci.org:8081/content/repositories/releases</url>
</repository>
<site>
<id>kohsuke.org</id>
<url>scp://kohsuke.org/home/kohsuke/kohsuke.org/maven-junit-plugin/</url>
<id>github-pages</id>
<url>gitsite:git@github.com/kohsuke/${project.artifactId}.git</url>
</site>
</distributionManagement>

<scm>
<url>http://github.com/kohsuke/maven-junit-plugin</url>
<connection>scm:git:git://github.com/kohsuke/maven-junit-plugin.git</connection>
<developerConnection>scm:git:ssh://git@github.com/kohsuke/maven-junit-plugin.git</developerConnection>
<connection>scm:git:git@github.com/kohsuke/${project.artifactId}.git</connection>
<developerConnection>scm:git:ssh://git@github.com/kohsuke/${project.artifactId}.git</developerConnection>
<url>http://${project.artifactId}.kohsuke.org/</url>
</scm>

<reporting>
Expand Down Expand Up @@ -177,7 +162,7 @@
</plugins>
</build>
</profile>

<profile>
<id>maven-3</id>
<activation>
Expand All @@ -197,9 +182,9 @@
</plugins>
</pluginManagement>
</build>
</profile>
</profiles>

</profile>

</profiles>

</project>

0 comments on commit a4deede

Please sign in to comment.