You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by Jacob Rousseau <ja...@virgil.nl> on 2003/01/17 16:55:18 UTC

Avoiding Ejb/Jboss tag-warnings using the ant task

	Hallo everyone,	

	 We have a problem avoiding Javadoc warnings on EJB and JBoss tags using 
the Ant-javadoc task (we are using Ant 1.5.1).
  The ant xml-code looks like this:
  -- snip --
	<target name="javadoc" >
		<javadoc
			sourcepath="${base}/src"
			destdir="${base}/docs/api"
			packagenames="nl.virgil.yards.*"
			classpathref="yards.classpath"
			access="private">
			<tag name="jboss" scope="all" description=" "/>
			<tag name="ejb:home" scope="all" description=" "/>
			<tag name="ejb:bean" scope="all" description=" "/>
             		<tag name="ejb:interface-method" scope="all" description=" "/>

		</javadoc>
		<delete dir="${build}/docs/api/yards" quiet="true"/>
		<copy todir="${build}/docs/api/yards">
			<fileset dir="${base}/docs/api"/>
		</copy>
	</target>
Javadoc still gives warnings. For example :
----------

warning - @ejb:interface -method is an unknown tag.
warning - @ejb:persistent-field is an unknown tag.

----------


Could someone please give us a hint what we don't do correctly,

	TIA, Jacob Rousseau



--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>