While compiling custom components generated from maven jbi plugin, if maven
complains about "generics are not supported in 1.3" then add the fragment
below in your POM file (in the plugins section).

This would only happen if you used generics in your java code!

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<!-- best lock down version of the plugin too -->
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>

Thanks
Soumadeep

Reply via email to