summaryrefslogtreecommitdiffstats
path: root/args4j/pom.xml
diff options
context:
space:
mode:
authormikaelpeltier <mikaelpeltier@google.com>2015-03-13 16:55:40 +0100
committermikaelpeltier <mikaelpeltier@google.com>2015-03-13 16:55:40 +0100
commit7c94b56d46601db9ed95143dc6889cdca83399e2 (patch)
tree620d5a914f444c3c30c7c6c14b39d9cf0dc0f170 /args4j/pom.xml
parent8007ff78c3d693f7a17350fae567ae5e6e0f0fb2 (diff)
downloadtoolchain_jack-7c94b56d46601db9ed95143dc6889cdca83399e2.tar.gz
toolchain_jack-7c94b56d46601db9ed95143dc6889cdca83399e2.tar.bz2
toolchain_jack-7c94b56d46601db9ed95143dc6889cdca83399e2.zip
Update arg4j to version 2.0.30
Change-Id: Ia94c584414379011b92c7e1d5f1e143bd1d4dc75
Diffstat (limited to 'args4j/pom.xml')
-rw-r--r--args4j/pom.xml25
1 files changed, 18 insertions, 7 deletions
diff --git a/args4j/pom.xml b/args4j/pom.xml
index e43638ac..608c623e 100644
--- a/args4j/pom.xml
+++ b/args4j/pom.xml
@@ -3,16 +3,16 @@
<parent>
<groupId>org.kohsuke</groupId>
<artifactId>pom</artifactId>
- <version>3</version>
+ <version>10</version>
</parent>
<groupId>args4j</groupId>
<artifactId>args4j-site</artifactId>
<name>args4j parent</name>
- <version>2.0.22</version>
+ <version>2.0.30</version>
<packaging>pom</packaging>
<description>args4j : Java command line arguments parser</description>
- <url>http://args4j.dev.java.net/</url>
+ <url>http://args4j.kohsuke.org/</url>
<issueManagement>
<url>https://args4j.dev.java.net/issues</url>
</issueManagement>
@@ -64,6 +64,7 @@
<connection>scm:git:git@github.com/kohsuke/args4j.git</connection>
<developerConnection>scm:git:ssh://git@github.com/kohsuke/args4j.git</developerConnection>
<url>http://args4j.kohsuke.org/</url>
+ <tag>HEAD</tag>
</scm>
<distributionManagement>
@@ -87,10 +88,11 @@
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
- <version>2.3.2</version>
+ <version>3.1</version>
<configuration>
- <source>1.5</source>
- <target>1.5</target>
+ <source>1.6</source>
+ <target>1.6</target>
+ <compilerArgument>-proc:none</compilerArgument>
</configuration>
</plugin>
<plugin>
@@ -105,7 +107,16 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
- <version>3.0-beta-3</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <extensions>true</extensions>
+ <configuration>
+ <instructions>
+ <Bundle-SymbolicName>org.kohsuke.${pom.artifactId}</Bundle-SymbolicName>
+ </instructions>
+ </configuration>
</plugin>
</plugins>
</build>