[hibernate-commits] Hibernate SVN: r13536 - entitymanager/tags/v3_2_0_GA.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Wed Aug 15 20:36:42 EDT 2007


Author: epbernard
Date: 2007-08-15 20:36:41 -0400 (Wed, 15 Aug 2007)
New Revision: 13536

Added:
   entitymanager/tags/v3_2_0_GA/build.xml
Log:
Move entitymanager tags/entitymanager_v3_2_0_GA to the new structure (v3_2_0_GA)

Copied: entitymanager/tags/v3_2_0_GA/build.xml (from rev 13535, tags/entitymanager_v3_2_0_GA/HibernateExt/ejb/build.xml)
===================================================================
--- entitymanager/tags/v3_2_0_GA/build.xml	                        (rev 0)
+++ entitymanager/tags/v3_2_0_GA/build.xml	2007-08-16 00:36:41 UTC (rev 13536)
@@ -0,0 +1,296 @@
+<!--
+
+  Hibernate Annotations ANT build script.
+
+  You need JDK 5.0 installed to build Hibernate EntityManager.
+
+-->
+
+<project name="HibernateEntityManager" default="dist" basedir=".">
+
+    <!-- Give user a chance to override without editing this file
+       (and without typing -D each time it compiles it) -->
+    <property file="build.properties"/>
+    <property file="${user.home}/.ant.properties"/>
+
+    <!-- Name of project and version, used to create filenames -->
+    <property name="Name" value="Hibernate EntityManager"/>
+    <property name="name" value="hibernate-entitymanager"/>
+    <property name="version" value="3.2.0.GA"/>
+    <property name="javadoc.packagenames" value="org.hibernate.ejb.*"/>
+    <property name="jdbc.dir" value="jdbc"/>
+    <property name="copy.test" value="true"/>
+    <property name="common.dir" value="../common"/>
+
+    <available property="jpa-present" file="${basedir}/../ejb-api" type="dir"/>
+    <import file="${common.dir}/common-build.xml"/>
+	<property name="jpa-javadoc.dir" value="${dist.doc.dir}/ejb-api"/>
+
+
+    <property name="resources.dir" value="src/resources"/>
+    <property name="testresources.dir" value="src/test-resources"/>
+    <property name="build.testresources.dir" value="${build.dir}/testresources"/>
+    <property name="build.temp.dir" value="${build.dir}/temp"/>
+
+    <target name="compile" depends="init" description="Compile the Java source code">
+        <available
+                classname="org.eclipse.core.launcher.Main"
+                property="build.compiler"
+                value="org.eclipse.jdt.core.JDTCompilerAdapter"
+                classpath="${java.class.path}"/>
+        <javac
+                source="1.5"
+                srcdir="${src.dir}"
+                destdir="${classes.dir}"
+                classpathref="lib.class.path"
+                debug="${javac.debug}"
+                optimize="${javac.optimize}"
+                nowarn="on"
+                >
+        </javac>
+    </target>
+
+    <target name="packjar">
+        <property name="extension" value="jar"/>
+        <!-- property name="jarname"/ -->
+        <mkdir dir="${build.testresources.dir}"/>
+        <jar destfile="${build.testresources.dir}/${jarname}.${extension}">
+            <!-- fileset dir="${build.temp.dir}"/ -->
+            <fileset dir="${classes.dir}">
+                <include name="**/test/pack/${jarname}/**.*"/>
+            </fileset>
+            <fileset dir="${testresources.dir}/${jarname}">
+                <include name="**/*.*"/>
+            </fileset>
+        </jar>
+        <delete dir="${build.temp.dir}"/>
+    </target>
+
+    <target name="packexploded">
+        <property name="extension" value="jar"/>
+        <!-- property name="jarname"/ -->
+        <mkdir dir="${build.testresources.dir}/${jarname}.${extension}"/>
+        <copy todir="${build.testresources.dir}/${jarname}.${extension}">
+            <!-- fileset dir="${build.temp.dir}"/ -->
+            <fileset dir="${classes.dir}">
+                <include name="**/test/pack/${jarname}/**.*"/>
+            </fileset>
+            <fileset dir="${testresources.dir}/${jarname}">
+                <include name="**/*.*"/>
+            </fileset>
+        </copy>
+        <delete dir="${build.temp.dir}"/>
+    </target>
+
+    <target name="test-resources" description="Prepare all needed jars and pars">
+        <antcall target="packjar" inheritall="true">
+            <param name="extension" value="par"/>
+            <param name="jarname" value="defaultpar"/>
+        </antcall>
+        <antcall target="packjar" inheritall="true">
+            <param name="extension" value="par"/>
+            <param name="jarname" value="explicitpar"/>
+        </antcall>
+        <antcall target="packjar" inheritall="true">
+            <param name="extension" value="par"/>
+            <param name="jarname" value="excludehbmpar"/>
+        </antcall>
+        <antcall target="packjar" inheritall="true">
+            <param name="extension" value="jar"/>
+            <param name="jarname" value="externaljar"/>
+        </antcall>
+        <antcall target="packjar" inheritall="true">
+            <param name="extension" value="par"/>
+            <param name="jarname" value="cfgxmlpar"/>
+        </antcall>
+        <antcall target="packexploded" inheritall="true">
+            <param name="extension" value="par"/>
+            <param name="jarname" value="explodedpar"/>
+        </antcall>
+    </target>
+
+    <target name="compiletest" depends="compile" description="Compile the tests">
+        <available
+                classname="org.eclipse.core.launcher.Main"
+                property="build.compiler"
+                value="org.eclipse.jdt.core.JDTCompilerAdapter"
+                classpath="${java.class.path}"/>
+        <javac
+                source="1.5"
+                srcdir="${test.dir}"
+                destdir="${classes.dir}"
+                debug="${javac.debug}"
+                optimize="${javac.optimize}"
+                nowarn="on">
+            <classpath>
+                <path refid="lib.class.path"/>
+            </classpath>
+        </javac>
+    </target>
+
+    <target name="junit" depends="compiletest,test-resources">
+        <mkdir dir="test_output"/>
+        <mkdir dir="${classes.dir}/META-INF/services"/>
+        <copy todir="${classes.dir}">
+            <fileset dir="${resources.dir}">
+                <include name="**/*.*"/>
+            </fileset>
+        </copy>
+        <junit fork="once" printsummary="yes" haltonfailure="yes">
+            <classpath>
+                <fileset dir="${jdbc.dir}">
+                    <include name="**/*.jar"/>
+                    <include name="**/*.zip"/>
+                </fileset>
+                <dirset dir="${build.testresources.dir}">
+                    <include name="**/*.jar"/>
+                    <include name="**/*.par"/>
+                </dirset>
+
+                <fileset dir="${build.testresources.dir}">
+                    <include name="**/*.jar"/>
+                    <include name="**/*.par"/>
+                </fileset>
+                <path refid="lib.class.path"/>
+                <!-- pathelement path="${classes.dir}"/ -->
+                <dirset dir="${classes.dir}">
+                    <exclude name="**/pack/**.*"/>
+                </dirset>
+
+                <!-- pathelement path="build/test.par"/ -->
+                <pathelement path="${src.dir}"/>
+                <!-- pick up properties from here -->
+                <pathelement path="${test.dir}"/>
+                <!-- pick up mappings from here -->
+            </classpath>
+            <formatter type="plain"/>
+            <formatter type="xml"/>
+            <batchtest fork="yes" todir="test_output" haltonfailure="no">
+                <fileset dir="${classes.dir}">
+                    <include name="**/*Test.class"/>
+                </fileset>
+            </batchtest>
+        </junit>
+    </target>
+
+    <!-- Run a single unit test. -->
+    <target name="junitsingle" depends="compiletest"
+            description="Run a single test suite (requires testname and jdbc.driver properties)">
+        <mkdir dir="test_output"/>
+        <junit printsummary="yes" fork="yes" haltonfailure="yes">
+            <classpath>
+                <fileset dir="${jdbc.dir}">
+                    <include name="**/*.jar"/>
+                    <include name="**/*.zip"/>
+                </fileset>
+                <path refid="lib.class.path"/>
+                <pathelement path="build/test.par"/>
+                <pathelement path="target/hibernate-entitymanager/hibernate-entitymanager.jar"/>
+                <pathelement path="${src.dir}"/>
+                <!-- pick up properties from here -->
+                <pathelement path="${test.dir}"/>
+                <!-- pick up mappings from here -->
+            </classpath>
+            <formatter type="plain"/>
+            <formatter type="xml"/>
+            <test fork="yes" todir="test_output" haltonfailure="no" name="${testname}"/>
+        </junit>
+    </target>
+
+    <target name="jar" depends="compile" description="Build the distribution .jar file">
+        <mkdir dir="${classes.dir}/META-INF/services"/>
+        <copy todir="${classes.dir}">
+            <fileset dir="${resources.dir}">
+                <include name="**/*.*"/>
+            </fileset>
+        </copy>
+        <manifest file="${classes.dir}/META-INF/MANIFEST.MF">
+            <attribute name="Product" value="${Name}"/>
+            <attribute name="Version" value="${version}"/>
+        </manifest>
+        <antcall target="common-build.jar"/>
+    </target>
+
+    <!-- target name="javadoc" description="Compile the Javadoc API documentation to dist dir">
+			<echo>Skipping java doc since ant's javadoc task cannot handle an alternative javadoc</echo>        	
+     </target -->
+	 
+	 <target name="jpa-javadoc" if="jpa-present">
+		 <mkdir dir="${jpa-javadoc.dir}"/>
+		 <ant dir="../ejb-api" target="javadoc" inheritAll="false"/>
+		 <copy todir="${jpa-javadoc.dir}">
+		     <fileset dir="${basedir}/../ejb-api/build/api">
+			     <include name="**/*.*"/>
+			 </fileset>
+		 </copy>
+	</target>
+
+    <!-- Some of this can probably be moved to common-build... -->
+    <target name="dist" depends="jar,javadoc,jpa-javadoc,copysource,copytest,copylib,extras" description="Build everything">
+
+        <ant inheritall="false" dir="${basedir}/doc/reference"/>
+        <copy todir="${dist.dir}/doc/reference" failonerror="false">
+            <fileset dir="${basedir}/doc/reference/build">
+                <include name="**/*.*"/>
+            </fileset>
+        </copy>
+
+        <copy todir="${dist.dir}/resources" failonerror="false">
+            <fileset dir="${resources.dir}">
+                <include name="**/*.*"/>
+            </fileset>
+        </copy>
+        <copy todir="${dist.dir}/test-resources" failonerror="false">
+            <fileset dir="${testresources.dir}">
+                <include name="**/*.*"/>
+            </fileset>
+        </copy>
+        <copy todir="${dist.dir}" failonerror="false">
+            <fileset dir="${common.dir}">
+                <include name="common-build.xml"/>
+            </fileset>
+        </copy>
+        <copy file="${basedir}/build.properties.dist" tofile="${dist.dir}/build.properties" failonerror="false">
+        </copy>
+        <antcall target="common-build.dist"/>
+    </target>
+
+    <target name="zip-dist" description="zip the dist">
+        <zip zipfile="${dist.dir}-${version}.zip">
+            <zipfileset prefix="${name}-${version}" dir="${dist.dir}"/>
+        </zip>
+        <tar compression="gzip" tarfile="${dist.dir}-${version}.tar.gz">
+            <tarfileset prefix="${name}-${version}" dir="${dist.dir}"/>
+        </tar>
+    </target>
+
+    <target name="profile" depends="compiletest">
+        <java classname="org.hibernate.ejb.test.Profile" fork="true">
+            <jvmarg value="-XrunjbossInspector:c:\profiler\data,include=org.hibernate.ejb,ignore=*,wakeupOnStartup=true"/>
+            <classpath>
+                <fileset dir="${jdbc.dir}">
+                    <include name="**/*.jar"/>
+                    <include name="**/*.zip"/>
+                </fileset>
+                <dirset dir="${build.testresources.dir}">
+                    <include name="**/*.jar"/>
+                    <include name="**/*.par"/>
+                </dirset>
+
+                <fileset dir="${build.testresources.dir}">
+                    <include name="**/*.jar"/>
+                    <include name="**/*.par"/>
+                </fileset>
+                <path refid="lib.class.path"/>
+                <pathelement path="${classes.dir}"/>
+                <!-- pathelement path="build/test.par"/ -->
+                <pathelement path="${src.dir}"/>
+                <!-- pick up properties from here -->
+                <pathelement path="${test.dir}"/>
+                <!-- pick up mappings from here -->
+            </classpath>
+        </java>
+    </target>
+
+
+</project>




More information about the hibernate-commits mailing list