Closed joel-costigliola closed 11 years ago
Thanks for the heads up! Thought this was fixed by M9 but I'll upgrade and tag a new release.
No it wasn't actually ... that's why I wanted to let you know.
By the way, I was looking to your pom and notice 1.6 compilation check in maven compiler plugin. If you really want to check that your library only use 1.6 API, you should use animal sniffer plugin (funny name !) and add this to your pom :
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<version>1.8</version>
<configuration>
<signature>
<groupId>org.codehaus.mojo.signature</groupId>
<artifactId>java16</artifactId>
<version>1.0</version>
</signature>
</configuration>
<executions>
<execution>
<id>Check JRE 1.6 API compatibility</id>
<phase>test</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
Released as 1.0.3. And I'll have a look at the plugin this weekend.
Thanks again.
2.0M10 fixes a small incompatibility with Android as reported here.
It might be better for fest-android to depend on this version.