[Bprocessor-commit] model/src build.xml,1.2,1.3
Status: Pre-Alpha
Brought to you by:
henryml
From: rimestad <rim...@us...> - 2005-09-28 14:08:03
|
Update of /cvsroot/bprocessor/model/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14594/src Modified Files: build.xml Log Message: small refactoring of the build.xml file into test/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/bprocessor/model/src/build.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** build.xml 28 Sep 2005 12:28:46 -0000 1.2 --- build.xml 28 Sep 2005 14:07:55 -0000 1.3 *************** *** 6,17 **** </fileset> <pathelement location="."/> </path> <target name="init"> ! <mkdir dir="${build.dir}/code"/> </target> <target name="compile" depends="dep"> ! <javac srcdir="${src.dir}" destdir="${build.dir}/code" deprecation="yes" debug="yes" includes="net/**"> --- 6,18 ---- </fileset> <pathelement location="."/> + <pathelement location="${build.code.dir}"/> </path> <target name="init"> ! <mkdir dir="${build.code.dir}"/> </target> <target name="compile" depends="dep"> ! <javac srcdir="${src.dir}" destdir="${build.code.dir}" deprecation="yes" debug="yes" includes="net/**"> *************** *** 41,44 **** --- 42,57 ---- bottom="Copyright © 2005 The BProcessor Team (http://bprocessor.sourceforge.net/)"> <link offline="true" href="http://java.sun.com/j2se/1.4/docs/api/" packagelistLoc="${java.home}/../docs/api"/> + <tag name="hibernate.id" enabled="False"/> + <tag name="hibernate.key" enabled="False"/> + <tag name="hibernate.class" enabled="False"/> + <tag name="hibernate.property" enabled="False"/> + <tag name="hibernate.cache" enabled="False"/> + <tag name="hibernate.set" enabled="False"/> + <tag name="hibernate.many-to-many" enabled="False"/> + <tag name="hibernate.one-to-many" enabled="False"/> + <tag name="hibernate.many-to-one" enabled="False"/> + <tag name="hibernate.joined-subclass" enabled="False"/> + <tag name="hibernate.list" enabled="False"/> + <tag name="hibernate.collection-index" enabled="False"/> </javadoc> </target> |