Hi,
On Jan 29, 2008 10:10 PM, Alex Lukin <[EMAIL PROTECTED]> wrote:
> Tuesday 29 January 2008 21:57:49 Jukka Zitting написав:
> > I just generated the OCM API docs for 1.4. They'll be available at
> > http://jackrabbit.apache.org/api/1.4/ocm/ in a few hours.
> >
> Thanks a lot! Plase could you tell how to do that in command line with jdk 1.5
> or 1.6. When I type "mvn javadoc:javadoc" in ocm module it swores a lot about
> generics that not supported in jdk 1.4 mode.
You need to add the following in the pom.xml file:
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<source>1.5</source>
</configuration>
</plugin>
BR,
Jukka Zitting