Bumping versions to 2.3-SNAPSHOT.

This commit is contained in:
Harald Kuhr
2009-10-31 19:10:27 +01:00
parent 68b30413ba
commit 4674b9e344
9 changed files with 57 additions and 25 deletions
+26 -1
View File
@@ -14,7 +14,7 @@
<parent>
<artifactId>twelvemonkeys-imageio</artifactId>
<groupId>com.twelvemonkeys</groupId>
<version>2.2</version>
<version>2.3-SNAPSHOT</version>
</parent>
<dependencies>
@@ -28,4 +28,29 @@
<classifier>tests</classifier>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<!-- TODO: Make default -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
<configuration>
<archive>
<manifest>
<!--<mainClass>com.mycompany.app.App</mainClass>-->
<packageName>com.twelvemonkeys.imageio.plugins.psd</packageName>
</manifest>
<manifestEntries>
<Implementation-Title>${project.name}</Implementation-Title>
<Implementation-Vendor>TwelveMonkeys</Implementation-Vendor>
<Implementation-Version>${project.version}</Implementation-Version>
<Implementation-URL>https://twelvemonkeys-imageio.dev.java.net/</Implementation-URL>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>