Well, this happen as soon as you use JDK 5 features ;)

On 8/13/06, soumadeep sen <[EMAIL PROTECTED]> wrote:

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




--
Cheers,
Guillaume Nodet

Reply via email to