Skip to content

Commit

Permalink
Merge pull request square#194 from candrews/patch-1
Browse files Browse the repository at this point in the history
Use animal-sniffer to ensure only Java 1.5 is used
  • Loading branch information
swankjesse committed May 22, 2013
2 parents 5bb8d57 + a6d07d9 commit f34c1ff
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,26 @@
<excludePackageNames>com.squareup.okhttp.internal:com.squareup.okhttp.internal.*</excludePackageNames>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<version>1.9</version>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<signature>
<groupId>org.codehaus.mojo.signature</groupId>
<artifactId>java15</artifactId>
<version>1.0</version>
</signature>
</configuration>
</plugin>
</plugins>
</build>
</project>
Expand Down

0 comments on commit f34c1ff

Please sign in to comment.