bump version to 0.0.2, removed unused self-executable, added osgi headers, updated dependency versions

This commit is contained in:
Dennis Crissman 2013-11-18 12:43:56 -05:00
parent 7116fd1889
commit 48323e52ee
1 changed files with 17 additions and 13 deletions

30
pom.xml
View File

@ -3,25 +3,30 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.redhat.trie</groupId>
<artifactId>PathPacker</artifactId>
<version>0.0.1</version>
<version>0.0.2</version>
<packaging>bundle</packaging>
<prerequisites>
<maven>3.0</maven>
</prerequisites>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk16</artifactId>
<version>1.44</version>
<version>1.46</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.15</version>
<version>1.2.17</version>
<scope>compile</scope>
<!--
log4j's metadata pulls in broken and useless deps:
@ -103,17 +108,16 @@
</tags>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.4.0</version>
<extensions>true</extensions>
<configuration>
<archive>
<manifest>
<mainClass>com.hashbangbash.trie.App</mainClass>
</manifest>
</archive>
<instructions>
<Export-Package>com.redhat.trie</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>