Author: damjan
Date: Tue May 14 05:01:35 2013
New Revision: 1482203
URL: http://svn.apache.org/r1482203
Log:
Verify conformance to the Java 1.5 API using the animal-sniffer plugin.
Add myself as a developer.
Modified:
commons/proper/compress/trunk/pom.xml
Modified: commons/proper/compress/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/compress/trunk/pom.xml?rev=1482203&r1=1482202&r2=1482203&view=diff
==============================================================================
--- commons/proper/compress/trunk/pom.xml (original)
+++ commons/proper/compress/trunk/pom.xml Tue May 14 05:01:35 2013
@@ -90,6 +90,11 @@ These include: bzip2, gzip, pack200, xz
<id>julius</id>
<email>julius at apache.org</email>
</developer>
+ <developer>
+ <name>Damjan Jovanovic</name>
+ <id>damjan</id>
+ <email>damjan at apache.org</email>
+ </developer>
</developers>
<contributors>
@@ -157,6 +162,27 @@ These include: bzip2, gzip, pack200, xz
</instructions>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>animal-sniffer-maven-plugin</artifactId>
+ <version>1.9</version>
+ <configuration>
+ <signature>
+ <groupId>org.codehaus.mojo.signature</groupId>
+ <artifactId>java15</artifactId>
+ <version>1.0</version>
+ </signature>
+ </configuration>
+ <executions>
+ <execution>
+ <id>check-java-api</id>
+ <phase>test</phase>
+ <goals>
+ <goal>check</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>