Moving to root below branch label

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2005 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2005-12-08 07:13:07 +00:00
commit e1e6508fec
1095 changed files with 230566 additions and 0 deletions

27
project-build.xml Normal file
View File

@@ -0,0 +1,27 @@
<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>