Files
alfresco-community-repo/project-build.xml
2005-12-08 07:13:07 +00:00

28 lines
1.1 KiB
XML

<project name="repository" default="build">
<path id="path.common" path="${basedir}/../../common"/>
<property name="dir.common" refid="path.common"/>
<import file="${dir.common}/common.xml"/>
<target name="compile-java" depends="common.compile-java">
<antcall target="compile-jibx" />
</target>
<target name="compile-jibx" depends="init">
<bind verbose="false" load="true" binding="${file.jibx.binding}">
<classpathset dir="${dir.classes}"/>
</bind>
</target>
<target name="compile-javadocs" depends="common.compile-javadocs" description="Creates the JavaDocs for the project">
<mkdir dir="${dir.javadoc.api.service}" />
<javadoc sourcepath="${dir.src.java}" destdir="${dir.javadoc.api.service}"
packagenames="org.alfresco.service.*" excludepackagenames=""
author="true" version="true" doctitle="Alfresco Content Management Service API Specification"
windowtitle="Alfresco Content Management Service API" classpathref="classpath.compile">
<bottom>${javadoc.copyright}</bottom>
</javadoc>
</target>
</project>