Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 25ab6caa authored by Jérôme Euzenat's avatar Jérôme Euzenat
Browse files

- largely improved the Javadoc generation process (no warning)

parent a141954a
No related branches found
No related tags found
No related merge requests found
...@@ -66,6 +66,7 @@ ...@@ -66,6 +66,7 @@
<fileset dir="classes" includes="**/*.class"/> <fileset dir="classes" includes="**/*.class"/>
</delete> </delete>
<antcall target="compile"/> <antcall target="compile"/>
<ant dir="plugins" target="compileall" />
</target> </target>
<!-- tested --> <!-- tested -->
...@@ -138,20 +139,26 @@ ...@@ -138,20 +139,26 @@
</target> </target>
<!-- tested --> <!-- tested -->
<target name="javadoc"> <target name="javadoc" depends="init">
<echo message="Javadocing..."/> <echo message="Javadocing..."/>
<javadoc <javadoc
sourcepath="src" destdir="javadoc" destdir="javadoc"
packagenames="fr.inrialpes.*,org.semanticweb.owl.align.*,org.ivml.alimo.*" author="true"
version="true"
Use="true" Splitindex="true" private="true" Use="true" Splitindex="true" private="true"
Windowtitle="Ontology Alignment API" Windowtitle="Alignment API and Server"
Doctitle="alignmebr" Header="INRIA &amp; friends" doctitle="Alignment API and Server ${version}"
bottom="..no bottom yet..." header="Alignment API and Server ${version}"
bottom="(C) INRIA &amp; friends, 2003-2008"
> >
<!--link href="http://www.inrialpes.fr/exmo/local/doc/jdk1.3-doc/api"/> <classpath refid="classpath"/>
<link href="http://www.inrialpes.fr/exmo/local/doc/xerces-doc/apiDocs"/> <packageset dir="src" defaultexcludes="yes">
<link href="http://www.inrialpes.fr/exmo/local/doc/xalan-doc/apidocs"/> <include name="org/semanticweb/owl/align/**"/>
<link href="http://www.inrialpes.fr/exmo/local/doc/SAX2-doc/javadoc"/--> <include name="fr/inrialpes/**"/>
<include name="org/ivml/alimo/**"/>
<!--exclude name="org/semanticweb/owl/**"/-->
</packageset>
<link href="http://java.sun.com/j2se/1.5.0/docs/api"/>
</javadoc> </javadoc>
</target> </target>
...@@ -168,12 +175,6 @@ ...@@ -168,12 +175,6 @@
<delete file="LICENSE.TXT"/> <delete file="LICENSE.TXT"/>
</target> </target>
<!-- tested -->
<target name="plugins" depends="init">
<echo message="Generating plugins..."/>
<ant dir="plugins" target="release"/>
</target>
<!-- tested --> <!-- tested -->
<target name="zip" depends="init"> <target name="zip" depends="init">
<echo message="Ziping..."/> <echo message="Ziping..."/>
...@@ -184,7 +185,9 @@ ...@@ -184,7 +185,9 @@
<antcall target="compileall"/> <antcall target="compileall"/>
<antcall target="jar"/> <antcall target="jar"/>
<antcall target="javadoc"/> <antcall target="javadoc"/>
<!--antcall target="plugins"/--> <ant dir="plugins" target="jar">
<property name="version" value="${version}"/>
</ant>
<!-- may be useful to change directory --> <!-- may be useful to change directory -->
<zip zipfile="${FTPDir}/align-${version}.zip"> <zip zipfile="${FTPDir}/align-${version}.zip">
<fileset dir="."> <fileset dir=".">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment