mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2005 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
28 lines
1.1 KiB
XML
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>
|