Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 37511 Details for
Bug 134497
Regresssion: Drag&Drop in Ant Outline View doesn't work
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
build.xml of OSS JPOX that can't be dragged into Ant Outline View
build.xml (text/plain), 61.49 KB, created by
Jörg von Frantzius
on 2006-04-03 09:17:07 EDT
(
hide
)
Description:
build.xml of OSS JPOX that can't be dragged into Ant Outline View
Filename:
MIME Type:
Creator:
Jörg von Frantzius
Created:
2006-04-03 09:17:07 EDT
Size:
61.49 KB
patch
obsolete
><!-- > == JPOX > --> ><project name="jpox" default="default"> > <property environment="env"/> > <property name="project.location" location="."/> > <property file="${project.location}/build.properties"/> > <property file="${project.location}/jpox.properties"/> > <property file="${project.location}/perfrun.properties"/> > <property file="${project.location}/test.properties"/> > <property name="project.build.debug" value="on"/> > > > <property file="${src.conf.dir}/${test.config}"/> > > <propertyset id="test.config"> > <propertyref prefix="javax.jdo."/> > <propertyref prefix="org.jpox."/> > </propertyset> > > <!-- load properties used to run performance tests and create a properyset for it --> > <property file="${src.conf.dir}/${perf.test.config}"/> > <propertyset id="perf.config"> > <propertyref prefix="perf.config."/> > <mapper type="glob" from="perf.config.*" to="*"/> > </propertyset> > > <taskdef resource="clovertasks"/> > > <target name="with.clover"> > <property name="clover.enabled" value="true"/> > <mkdir dir="${clover.db.dir}"/> > <clover-setup initString="${clover.db.dir}/jpox-clover-all.db"> > <fileset dir="${src.java.dir}"> > <include name="**/*.java"/> > </fileset> > </clover-setup> > </target> > > <target name="clover.html"> > <!-- > <clover-merge initString="${clover.db.dir}/clover-all.db"> > <cloverDb initString="${clover.db.dir}/clover-general.db"/> > <cloverDb initString="${clover.db.dir}/clover-datastore.db"/> > <cloverDb initString="${clover.db.dir}/clover-application.db"/> > <cloverDb initString="${clover.db.dir}/clover-schema.db"/> > </clover-merge> > --> > <clover-setup initString="${clover.db.dir}/jpox-clover-all.db"/> > <clover-report> > <current outfile="clover_html"> > <fileset dir="${src.java.dir}"> > <include name="**/*.java"/> > </fileset> > <format type="html"/> > </current> > </clover-report> > </target> > > <path id="lib.classpath"> > <pathelement path="${ant.home}/lib/clover.jar"/> > <pathelement location="${dependency.bcel.location}"/> > <pathelement location="${dependency.commons-dbcp.location}"/> > <pathelement location="${dependency.commons-collections.location}"/> > <pathelement location="${dependency.commons-pool.location}"/> > <pathelement location="${dependency.junit.location}"/> > <pathelement location="${dependency.log4j.location}"/> > <pathelement location="${dependency.ant.location}"/> > <pathelement location="${dependency.jaas.location}"/> > <pathelement location="${dependency.jca.location}"/> > <pathelement location="${dependency.jta.location}"/> > <pathelement location="${dependency.jdbc.location}"/> > <pathelement location="${dependency.jdo.location}"/> > <pathelement location="${PluginDBCP.jar.file}"/> > </path> > > <path id="project.classpath"> ><!-- <pathelement location="${jdo.classes.dir}"/> --> > <pathelement location="${main.classes.dir}"/> > <pathelement location="${Enhancer.classes.dir}"/> > <path refid="lib.classpath"/> > </path> > > <path id="test.jdbc.classpath"> > <fileset dir="${test.jdbc.dir}"> > <include name="**/*.jar"/> > </fileset> > </path> > > <property name="generated.dist.files" value="${dist.bin.file},${dist.src.file}"/> > > <!-- > =================================================================== > TARGET : default > =================================================================== > --> > <target name="default"> > <echo message="==================================================================="/> > <echo message="Welcome to JPOX build."/> > <echo message="==================================================================="/> > <antcall target="${build.setting.default.target}"/> > </target> > > <!-- > =================================================================== > TARGET : all > =================================================================== > --> > <target name="all" depends="clean,compile,test,release"/> > > <!-- > =================================================================== > TARGET : help > =================================================================== > --> > <target name="help"> > <echo> >Targets available: >- all > Cleans, compiles, run tests and creates the release files. > >- compile > Compiles core classes only. > >- clean > Deletes build output. > >- rar > Create JCA connector adaptor rar file > >- release > Create binary and source files for the formats: jar, zip, tar and targz. > >- test > Runs the suite of tests. > </echo> > </target> > > <!-- > =================================================================== > TARGET : clean > =================================================================== > --> > <target name="clean" description="Clean all build and test results"> > <delete includeEmptyDirs="true" quiet="true"> > <fileset dir="${classes.dir}" includes="**/*.class,**/*.properties,**/*.*"/> > <fileset dir="${test.classes.dir}" includes="**/*.class,**/*.properties"/> > <fileset dir="${Enhancer.test.classes.dir}" includes="**/*.class,**/*.properties"/> > <fileset dir="." includes="${generated.dist.files}"/> > </delete> > <delete dir="${classes.dir}" quiet="true"/> > <delete dir="${test.classes.dir}" quiet="true"/> > <delete dir="${Enhancer.test.classes.dir}" quiet="true"/> > </target> > > <!-- > =================================================================== > TARGET : test.clean > =================================================================== > --> > <target name="test.clean"> > <delete includeEmptyDirs="true" quiet="true"> > <fileset dir="${test.classes.dir}" includes="**/*.*"/> > </delete> > <delete dir="${test.classes.dir}" quiet="true"/> > <delete file="${project.location}/jpoxAutoStart.xml" quiet="true"/> > <!--<delete file="${project.location}/jpox-test.log" quiet="true"/> --> > </target> > > <!-- > =================================================================== > TARGET : test.unit.clean > =================================================================== > --> > <target name="test.unit.clean" depends="test.clean"> > <delete dir="${test.unit.results.dir}" quiet="true"/> > <delete includeEmptyDirs="true" quiet="true"> > <fileset dir="${test.unit.results.dir}" includes="**/*.*"/> > </delete> > <delete dir="${test.unit.results.dir}" quiet="true"/> > </target> > > <!-- > =================================================================== > TARGET : test.general.clean > =================================================================== > --> > <target name="test.general.clean" depends="test.clean"> > <delete dir="${test.general.results.dir}" quiet="true"/> > <delete includeEmptyDirs="true" quiet="true"> > <fileset dir="${test.general.results.dir}" includes="**/*.*"/> > </delete> > <delete dir="${test.general.results.dir}" quiet="true"/> > </target> > > <!-- > =================================================================== > TARGET : test.datastore.clean > =================================================================== > --> > <target name="test.datastore.clean" depends="test.clean"> > <delete dir="${test.datastore.results.dir}" quiet="true"/> > <delete includeEmptyDirs="true" quiet="true"> > <fileset dir="${test.datastore.results.dir}" includes="**/*.*"/> > </delete> > <delete dir="${test.datastore.results.dir}" quiet="true"/> > </target> > > <!-- > =================================================================== > TARGET : test.application.clean > =================================================================== > --> > <target name="test.application.clean" depends="test.clean"> > <delete dir="${test.application.results.dir}" quiet="true"/> > <delete includeEmptyDirs="true" quiet="true"> > <fileset dir="${test.application.results.dir}" includes="**/*.*"/> > </delete> > <delete dir="${test.application.results.dir}" quiet="true"/> > </target> > > <!-- > =================================================================== > TARGET : performance.datastore.clean > =================================================================== > --> > <target name="performance.datastore.clean" depends="test.clean"> > <delete dir="${perf.test.datastore.results.dir}" quiet="true"/> > <delete includeEmptyDirs="true" quiet="true"> > <fileset dir="${perf.test.datastore.results.dir}" includes="**/*.*"/> > </delete> > <delete dir="${perf.test.datastore.results.dir}" quiet="true"/> > </target> > > <!-- > =================================================================== > TARGET : profile.clean > =================================================================== > --> > <target name="profile.clean" depends="test.clean"> > <delete dir="${profile.test.results.dir}" quiet="true"/> > <delete includeEmptyDirs="true" quiet="true"> > <fileset dir="${profile.test.results.dir}" includes="**/*.*"/> > </delete> > <delete dir="${profile.test.results.dir}" quiet="true"/> > </target> > > <!-- > =================================================================== > TARGET : performance.application.clean > =================================================================== > --> > <target name="performance.application.clean" depends="test.clean"> > <delete dir="${perf.test.application.results.dir}" quiet="true"/> > <delete includeEmptyDirs="true" quiet="true"> > <fileset dir="${perf.test.application.results.dir}" includes="**/*.*"/> > </delete> > <delete dir="${perf.test.application.results.dir}" quiet="true"/> > </target> > > <!-- > =================================================================== > TARGET : test.schema.clean > =================================================================== > --> > <target name="test.schema.clean" depends="test.clean"> > <delete dir="${test.schema.results.dir}" quiet="true"/> > <delete includeEmptyDirs="true" quiet="true"> > <fileset dir="${test.schema.results.dir}" includes="**/*.*"/> > </delete> > <delete dir="${test.schema.results.dir}" quiet="true"/> > </target> > > <!-- > =================================================================== > TARGET : test.case.clean > =================================================================== > --> > <target name="test.case.clean" depends="test.clean"> > <delete dir="${test.case.results.dir}" quiet="true"/> > <delete includeEmptyDirs="true" quiet="true"> > <fileset dir="${test.case.results.dir}" includes="**/*.*"/> > </delete> > <delete dir="${test.case.results.dir}" quiet="true"/> > </target> > > <!-- > =================================================================== > TARGET : prepare > =================================================================== > --> > <target name="prepare"> > <echo message="Making dir ${classes.dir}" level="debug"/> > <echo message="Making dir ${test.classes.dir}" level="debug"/> > <mkdir dir="${classes.dir}"/> > <mkdir dir="${test.classes.dir}"/> > </target> > > <!-- > =================================================================== > TARGET : prepare.Enhancer > =================================================================== > --> > <target name="prepare.Enhancer"> > <echo message="Making dir ${Enhancer.test.classes.dir}" level="debug"/> > <mkdir dir="${Enhancer.classes.dir}"/> > <mkdir dir="${Enhancer.test.classes.dir}"/> > </target> > > <!-- > =================================================================== > TARGET : schema.create.general > =================================================================== > This target is only used for testing the SchemaToolTask > =================================================================== > --> > <target name="schema.create.general" depends="test.general.clean,compile,test.general.copy.properties,enhance"> > <echo message="==================================================================="/> > <echo message="Schema create"/> > <echo message="==================================================================="/> > <taskdef name="schematool" classname="org.jpox.SchemaToolTask"> > <classpath> > <path refid="test.jdbc.classpath"/> > <path refid="lib.classpath"/> > <pathelement location="${classes.dir}"/> > <pathelement location="${test.classes.dir}"/> > </classpath> > </taskdef> > > <schematool > failonerror="true" > fork="true" > verbose="true" > mode="create"> > <classpath> > <path refid="test.jdbc.classpath"/> > <path refid="lib.classpath"/> > <pathelement location="${classes.dir}"/> > <pathelement location="${test.classes.dir}"/> > </classpath> > <fileset dir="${test.classes.dir}"> > <include name="**/*.jdo"/> > <include name="**/*.orm"/> > </fileset> > <sysproperty key="javax.jdo.option.ConnectionDriverName" value="${javax.jdo.option.ConnectionDriverName}"/> > <sysproperty key="javax.jdo.option.ConnectionURL" value="${javax.jdo.option.ConnectionURL}"/> > <sysproperty key="javax.jdo.option.ConnectionUserName" value="${javax.jdo.option.ConnectionUserName}"/> > <sysproperty key="javax.jdo.option.ConnectionPassword" value="${javax.jdo.option.ConnectionPassword}"/> > </schematool> > </target> > > <!-- > =================================================================== > TARGET : test > =================================================================== > --> > <target name="test" description="Runs all JUnit tests."> > <echo message="==================================================================="/> > <echo message="Database configuration for testing:"/> > <echo message="database.driver = ${javax.jdo.option.ConnectionDriverName}"/> > <echo message="database.url = ${javax.jdo.option.ConnectionURL}"/> > <echo message="database.url2 = ${javax.jdo.option.ConnectionURL2}"/> > <echo message="database.user = ${javax.jdo.option.ConnectionUserName}"/> > <echo message="==================================================================="/> > <antcall target="test.general"/> > <antcall target="test.datastore"/> > <antcall target="test.application"/> > <antcall target="test.schema"/> > <antcall target="test.Enhancer"/> > </target> > > <!-- > =================================================================== > TARGET : performance > =================================================================== > --> > <target name="performance" description="Runs all JUnit performance tests."> > <echo message="==================================================================="/> > <echo message="Database configuration for testing:"/> > <echo message="database.driver = ${javax.jdo.option.ConnectionDriverName}"/> > <echo message="database.url = ${javax.jdo.option.ConnectionURL}"/> > <echo message="database.user = ${javax.jdo.option.ConnectionUserName}"/> > <echo message="==================================================================="/> > <antcall target="performance.datastore"/> > <antcall target="performance.application"/> > > <antcall target="performance.report"/> > </target> > > <!-- > =================================================================== > TARGET : performance.clear.stats > =================================================================== > --> > <target name="performance.clear.stats" description="Clears JPOX performance statistics."> > <copy file="${test.report.style.dir}/performance-report.xml" > tofile="${perf.dir}/performance-report.xml" > overwrite="true" > failonerror="true" > verbose="true"/> > </target> > > <!-- > =================================================================== > TARGET : performance.report > =================================================================== > --> > <target name="performance.report" description="Combines all JUnit performance tests into one report."> > <copy file="${test.report.style.dir}/performance-report.xml" > tofile="${perf.dir}/performance-report.xml" > overwrite="false" > failonerror="true" > verbose="true"/> > <xslt in="${perf.dir}/performance-report.xml" > style="${test.report.style.dir}/performance-report.xsl" > out="${perf.dir}/performance-report.tmp" > force="true"> > <param name="measurement.key" expression="${perf.test.key}"/> > </xslt> > <move file="${perf.dir}/performance-report.tmp" > tofile="${perf.dir}/performance-report.xml" > overwrite="false" > failonerror="true" > verbose="true"/> > <xslt in="${perf.dir}/performance-report.xml" > style="${test.report.style.dir}/performance-report2html.xsl" > out="${perf.dir}/performance-report.html" > force="true"> > </xslt> > </target> > > <!-- > =================================================================== > TARGET : test.unit.copy.properties > =================================================================== > --> > <target name="test.unit.copy.properties"> > <!-- empty target to fulfill dependencies of test.unit --> > </target> > > <!-- > =================================================================== > TARGET : test.unit > =================================================================== > --> > <target name="test.unit" depends="test.unit.clean,compile,test.unit.copy.properties,enhance"> > <echo message="==================================================================="/> > <echo message="Unit tests"/> > <echo message="==================================================================="/> > <mkdir dir="${test.unit.results.dir}"/> > <copy todir="${test.classes.dir}" failonerror="no"> > <fileset dir="." includes="${test.log4j.configuration}"/> > </copy> > > <junit printsummary="no" fork="yes" haltonfailure="no"> > <classpath> > <path refid="test.jdbc.classpath"/> > <path refid="lib.classpath"/> > <pathelement location="${main.classes.dir}"/> > <pathelement location="${test.classes.dir}"/> > <pathelement location="${jdo.classes.dir}"/> > </classpath> > <formatter type="xml"/> > <batchtest fork="yes" todir="${test.unit.results.dir}"> > <fileset dir="${test.classes.dir}" includes="${test.suite.unit}"/> > </batchtest> > </junit> > <junitreport todir="${test.unit.results.dir}"> > <fileset dir="${test.unit.results.dir}"> > <include name="TEST-*.xml"/> > </fileset> > <report format="frames" todir="${test.unit.results.dir}/html" > styledir="${test.report.style.dir}"/> > <report format="noframes" todir="${test.unit.results.dir}/html" > styledir="${test.report.style.dir}"/> > </junitreport> > </target> > > > <!-- > =================================================================== > TARGET : test.general > =================================================================== > --> > <target name="test.general" depends="test.general.clean,compile,test.general.copy.properties,enhance"> > <echo message="==================================================================="/> > <echo message="General tests"/> > <echo message="==================================================================="/> > <mkdir dir="${test.general.results.dir}"/> > <copy todir="${test.classes.dir}" failonerror="no"> > <fileset dir="." includes="${test.log4j.configuration}"/> > </copy> > > <junit printsummary="no" fork="yes" haltonfailure="no"> > <classpath> > <path refid="test.jdbc.classpath"/> > <path refid="lib.classpath"/> > <pathelement location="${main.classes.dir}"/> > <pathelement location="${test.classes.dir}"/> > <pathelement location="${jdo.classes.dir}"/> > </classpath> > <formatter type="xml"/> > <syspropertyset refid="test.config"/> > <sysproperty key="log4j.configuration" value="${test.log4j.configuration}"/> > <batchtest fork="yes" todir="${test.general.results.dir}"> > <fileset dir="${test.classes.dir}" includes="${test.suite.general}"/> > </batchtest> > <test name="org.jpox.persistence.FinishScenarioTest" todir="${test.general.results.dir}"/> > </junit> > <junitreport todir="${test.general.results.dir}"> > <fileset dir="${test.general.results.dir}"> > <include name="TEST-*.xml"/> > </fileset> > <report format="frames" todir="${test.general.results.dir}/html" > styledir="${test.report.style.dir}"/> > <report format="noframes" todir="${test.general.results.dir}/html" > styledir="${test.report.style.dir}"/> > </junitreport> > </target> > > <!-- > =================================================================== > TARGET : test.datastore > =================================================================== > --> > <target name="test.datastore" depends="test.datastore.clean,compile,test.datastore.copy.properties,enhance"> > <echo message="==================================================================="/> > <echo message="Datastore tests"/> > <echo message="==================================================================="/> > <mkdir dir="${test.datastore.results.dir}"/> > <copy todir="${test.classes.dir}" failonerror="no"> > <fileset dir="." includes="${test.log4j.configuration}"/> > </copy> > > <junit printsummary="no" fork="yes" haltonfailure="no"> > <classpath> > <path refid="test.jdbc.classpath"/> > <path refid="lib.classpath"/> > <pathelement location="${main.classes.dir}"/> > <pathelement location="${test.classes.dir}"/> > <pathelement location="${jdo.classes.dir}"/> > </classpath> > <formatter type="xml"/> > <syspropertyset refid="test.config"/> > <sysproperty key="log4j.configuration" value="${test.log4j.configuration}"/> > <batchtest fork="yes" todir="${test.datastore.results.dir}"> > <fileset dir="${test.classes.dir}" includes="${test.suite.datastore}"/> > </batchtest> > <test name="org.jpox.persistence.FinishScenarioTest" todir="${test.datastore.results.dir}"/> > </junit> > <junitreport todir="${test.datastore.results.dir}"> > <fileset dir="${test.datastore.results.dir}"> > <include name="TEST-*.xml"/> > </fileset> > <report format="frames" todir="${test.datastore.results.dir}/html" > styledir="${test.report.style.dir}"/> > <report format="noframes" todir="${test.datastore.results.dir}/html" > styledir="${test.report.style.dir}"/> > </junitreport> > </target> > > <!-- > =================================================================== > TARGET : test.application > =================================================================== > --> > <target name="test.application" depends="test.application.clean,compile,test.application.copy.properties,enhance"> > <echo message="==================================================================="/> > <echo message="Application tests"/> > <echo message="==================================================================="/> > <mkdir dir="${test.application.results.dir}"/> > <copy todir="${test.classes.dir}" failonerror="no"> > <fileset dir="." includes="${test.log4j.configuration}"/> > </copy> > > <junit printsummary="no" fork="yes" haltonfailure="no"> > <classpath> > <path refid="test.jdbc.classpath"/> > <path refid="lib.classpath"/> > <pathelement location="${main.classes.dir}"/> > <pathelement location="${test.classes.dir}"/> > <pathelement location="${jdo.classes.dir}"/> > </classpath> > <formatter type="xml"/> > <syspropertyset refid="test.config"/> > <sysproperty key="log4j.configuration" value="${test.log4j.configuration}"/> > <batchtest fork="yes" todir="${test.application.results.dir}"> > <fileset dir="${test.classes.dir}" includes="${test.suite.application}"/> > </batchtest> > <test name="org.jpox.persistence.FinishScenarioTest" todir="${test.application.results.dir}"/> > </junit> > <junitreport todir="${test.application.results.dir}"> > <fileset dir="${test.application.results.dir}"> > <include name="TEST-*.xml"/> > </fileset> > <report format="frames" todir="${test.application.results.dir}/html" > styledir="${test.report.style.dir}"/> > <report format="noframes" todir="${test.application.results.dir}/html" > styledir="${test.report.style.dir}"/> > </junitreport> > </target> > > <!-- > =================================================================== > TARGET : performance.datastore > =================================================================== > --> > <target name="performance.datastore" depends="performance.datastore.clean,compile,test.datastore.copy.properties,enhance"> > <echo message="==================================================================="/> > <echo message="Datastore performance tests"/> > <echo message="==================================================================="/> > <mkdir dir="${perf.test.datastore.results.dir}"/> > <copy todir="${test.classes.dir}" failonerror="no"> > <fileset dir="." includes="${test.log4j.configuration}"/> > </copy> > > <junit printsummary="no" fork="yes" haltonfailure="no"> > <classpath> > <path refid="test.jdbc.classpath"/> > <path refid="lib.classpath"/> > <pathelement location="${classes.dir}"/> > <pathelement location="${test.classes.dir}"/> > </classpath> > <formatter type="xml"/> > <syspropertyset refid="perf.config"/> > <sysproperty key="log4j.configuration" value="${test.log4j.configuration}"/> > <batchtest fork="yes" todir="${perf.test.datastore.results.dir}"> > <fileset dir="${test.classes.dir}" includes="${perf.test.suite.datastore}"/> > </batchtest> > <test name="org.jpox.persistence.FinishScenarioTest" todir="${perf.test.datastore.results.dir}"/> > </junit> > <junitreport todir="${perf.test.datastore.results.dir}"> > <fileset dir="${perf.test.datastore.results.dir}"> > <include name="TEST-*.xml"/> > </fileset> > <report format="frames" todir="${perf.test.datastore.results.dir}/html" > styledir="${test.report.style.dir}"/> > <report format="noframes" todir="${perf.test.datastore.results.dir}/html" > styledir="${test.report.style.dir}"/> > </junitreport> > </target> > > <!-- > =================================================================== > TARGET : performance.application > =================================================================== > --> > <target name="performance.application" depends="performance.application.clean,compile,test.application.copy.properties,enhance"> > <echo message="==================================================================="/> > <echo message="Application performance tests"/> > <echo message="==================================================================="/> > <mkdir dir="${perf.test.application.results.dir}"/> > <copy todir="${test.classes.dir}" failonerror="no"> > <fileset dir="." includes="${test.log4j.configuration}"/> > </copy> > > <junit printsummary="no" fork="yes" haltonfailure="no"> > <classpath> > <path refid="test.jdbc.classpath"/> > <path refid="lib.classpath"/> > <pathelement location="${classes.dir}"/> > <pathelement location="${test.classes.dir}"/> > </classpath> > <formatter type="xml"/> > <syspropertyset refid="perf.config"/> > <sysproperty key="log4j.configuration" value="${test.log4j.configuration}"/> > <batchtest fork="yes" todir="${perf.test.application.results.dir}"> > <fileset dir="${test.classes.dir}" includes="${perf.test.suite.application}"/> > </batchtest> > <test name="org.jpox.persistence.FinishScenarioTest" todir="${perf.test.application.results.dir}"/> > </junit> > <junitreport todir="${perf.test.application.results.dir}"> > <fileset dir="${perf.test.application.results.dir}"> > <include name="TEST-*.xml"/> > </fileset> > <report format="frames" todir="${perf.test.application.results.dir}/html" > styledir="${test.report.style.dir}"/> > <report format="noframes" todir="${perf.test.application.results.dir}/html" > styledir="${test.report.style.dir}"/> > </junitreport> > </target> > > <!-- > =================================================================== > TARGET : profile.datastore.prepare > =================================================================== > --> > <target name="profile.datastore.prepare" depends="profile.clean,compile,test.datastore.copy.properties,enhance"> > <echo message="==================================================================="/> > <echo message="Datastore profiling"/> > <echo message="==================================================================="/> > <mkdir dir="${profile.test.results.dir}"/> > <copy todir="${test.classes.dir}" failonerror="no"> > <fileset dir="." includes="${test.log4j.configuration}"/> > </copy> > </target> > > <!-- > =================================================================== > TARGET : profile.application.prepare > =================================================================== > --> > <target name="profile.application.prepare" depends="profile.clean,compile,test.application.copy.properties,enhance"> > <echo message="==================================================================="/> > <echo message="Application profiling"/> > <echo message="==================================================================="/> > <mkdir dir="${profile.test.results.dir}"/> > <copy todir="${test.classes.dir}" failonerror="no"> > <fileset dir="." includes="${test.log4j.configuration}"/> > </copy> > </target> > > <!-- > =================================================================== > TARGET : profile.datastore > =================================================================== > --> > <target name="profile.datastore" depends="profile.datastore.prepare"> > <antcall target="profile.run.profiler"/> > <antcall target="profile.run.finish"/> > </target> > > <!-- > =================================================================== > TARGET : profile.application > =================================================================== > --> > <target name="profile.application" depends="profile.application.prepare"> > <antcall target="profile.run.profiler"/> > <antcall target="profile.run.finish"/> > </target> > > <!-- > =================================================================== > TARGET : profile.run.profiler > =================================================================== > --> > <target name="profile.run.profiler"> > <java failonerror="true" fork="true" classname="org.jpox.perf.ProfileRunner" > > <jvmarg value="-Xint"/> > <jvmarg value="-Xrunhprof:cpu=times,depth=48,cutoff=0,monitor=y,thread=y,file=${profile.test.results.dir}/java.hprof.txt"/> > <arg line="${profile.testcase} ${profile.tests}"/> > <classpath> > <path refid="test.jdbc.classpath"/> > <path refid="lib.classpath"/> > <pathelement location="${classes.dir}"/> > <pathelement location="${test.classes.dir}"/> > </classpath> > <syspropertyset refid="perf.config"/> > <sysproperty key="log4j.configuration" value="${test.log4j.configuration}"/> > </java> > </target> > > <!-- > =================================================================== > TARGET : profile.run.finish > =================================================================== > --> > <target name="profile.run.finish"> > <junit printsummary="no" fork="yes" haltonfailure="no"> > <classpath> > <path refid="test.jdbc.classpath"/> > <path refid="lib.classpath"/> > <pathelement location="${classes.dir}"/> > <pathelement location="${test.classes.dir}"/> > </classpath> > <formatter type="xml"/> > <syspropertyset refid="perf.config"/> > <sysproperty key="log4j.configuration" value="${test.log4j.configuration}"/> > <test name="org.jpox.persistence.FinishScenarioTest" todir="${profile.test.results.dir}"/> > </junit> > </target> > > > <!-- > =================================================================== > TARGET : test.schema > =================================================================== > --> > <target name="test.schema" depends="test.schema.clean,compile,test.schema.copy.properties,enhance"> > <echo message="==================================================================="/> > <echo message="Custom schema tests"/> > <echo message="==================================================================="/> > <mkdir dir="${test.schema.results.dir}"/> > <copy todir="${test.classes.dir}" failonerror="no"> > <fileset dir="." includes="${test.log4j.configuration}"/> > </copy> > > <junit printsummary="no" fork="yes" haltonfailure="no"> > <classpath> > <path refid="test.jdbc.classpath"/> > <path refid="lib.classpath"/> > <pathelement location="${main.classes.dir}"/> > <pathelement location="${test.classes.dir}"/> > <pathelement location="${jdo.classes.dir}"/> > </classpath> > <formatter type="xml"/> > <syspropertyset refid="test.config"/> > <sysproperty key="log4j.configuration" value="${test.log4j.configuration}"/> > <batchtest fork="yes" todir="${test.schema.results.dir}"> > <fileset dir="${test.classes.dir}" includes="${test.suite.schema}"/> > </batchtest> > <test name="org.jpox.persistence.FinishScenarioTest" todir="${test.schema.results.dir}"/> > </junit> > <junitreport todir="${test.schema.results.dir}"> > <fileset dir="${test.schema.results.dir}"> > <include name="TEST-*.xml"/> > </fileset> > <report format="frames" todir="${test.schema.results.dir}/html" > styledir="${test.report.style.dir}"/> > <report format="noframes" todir="${test.schema.results.dir}/html" > styledir="${test.report.style.dir}"/> > </junitreport> > </target> > > <!-- > =================================================================== > TARGET : test.case > =================================================================== > Custom selected test cases > e.g. ant test.case -Dtest.suite.case=**/RelationshipTest.class -Dtest.suite.case.identity=datastore > =================================================================== > --> > <target name="test.case" depends="test.case.clean,compile,test.case.copy.properties,enhance"> > <echo message="==================================================================="/> > <echo message="Custom selected tests"/> > <echo message="==================================================================="/> > <mkdir dir="${test.case.results.dir}"/> > <copy todir="${test.classes.dir}" failonerror="no"> > <fileset dir="." includes="${test.log4j.configuration}"/> > </copy> > > <junit printsummary="no" fork="yes" haltonfailure="no"> > <classpath> > <path refid="test.jdbc.classpath"/> > <path refid="lib.classpath"/> > <pathelement location="${main.classes.dir}"/> > <pathelement location="${test.classes.dir}"/> > <pathelement location="${jdo.classes.dir}"/> > </classpath> > <formatter type="xml"/> > <syspropertyset refid="test.config"/> > <sysproperty key="log4j.configuration" value="${test.log4j.configuration}"/> > <batchtest fork="yes" todir="${test.case.results.dir}"> > <fileset dir="${test.classes.dir}" includes="${test.suite.case}"/> > </batchtest> > <test name="org.jpox.persistence.FinishScenarioTest" todir="${test.case.results.dir}"/> > </junit> > <junitreport todir="${test.case.results.dir}"> > <fileset dir="${test.case.results.dir}"> > <include name="TEST-*.xml"/> > </fileset> > <report format="frames" todir="${test.case.results.dir}/html" > styledir="${test.report.style.dir}"/> > <report format="noframes" todir="${test.case.results.dir}/html" > styledir="${test.report.style.dir}"/> > </junitreport> > </target> > > <!-- > =================================================================== > TARGET : test.Enhancer > =================================================================== > --> > <target name="test.Enhancer" depends="compile,compile.Enhancer,compile.Enhancer.test,test.Enhancer.copy.properties"> > <echo message="==================================================================="/> > <echo message="Enhancer tests"/> > <echo message="==================================================================="/> > <mkdir dir="${Enhancer.test.results.dir}"/> > <copy todir="${Enhancer.test.classes.dir}" failonerror="no"> > <fileset dir="." includes="${Enhancer.test.log4j.configuration}"/> > </copy> > > <junit printsummary="no" fork="yes" haltonfailure="no"> > <classpath> > <path refid="lib.classpath"/> > <pathelement location="${main.classes.dir}"/> > <pathelement location="${jdo.classes.dir}"/> > <pathelement location="${Enhancer.classes.dir}"/> > <pathelement location="${Enhancer.test.classes.dir}"/> > </classpath> > <formatter type="xml"/> > <sysproperty key="log4j.configuration" value="${Enhancer.test.log4j.configuration}"/> > <batchtest fork="yes" todir="${Enhancer.test.results.dir}"> > <fileset dir="${Enhancer.test.classes.dir}" includes="**/TestA**.class"/> > </batchtest> > </junit> > <junitreport todir="${Enhancer.test.results.dir}"> > <fileset dir="${Enhancer.test.results.dir}"> > <include name="TEST-*.xml"/> > </fileset> > <report format="frames" todir="${Enhancer.test.results.dir}/html" > styledir="${test.report.style.dir}"/> > <report format="noframes" todir="${Enhancer.test.results.dir}/html" > styledir="${test.report.style.dir}"/> > </junitreport> > </target> > > > <!-- > =================================================================== > TARGET : compile > =================================================================== > --> ><!-- <target name="compile" depends="copy-jars,prepare,compile.jdo,compile.java,compile.test,compile.Enhancer,copy.properties"/> --> > <target name="compile" depends="copy-jars,prepare,compile.java,compile.test,compile.Enhancer,copy.properties"/> > > <!-- > =================================================================== > TARGET : compile.java > =================================================================== > --> ><!-- <target name="compile.jdo"> > <echo message="==================================================================="/> > <echo message="Your source configuration:"/> > <echo message="src.java.dir = ${src.java.dir}"/> > <echo message="jdo.classes.dir = ${jdo.classes.dir}"/> > <echo message="==================================================================="/> > <mkdir dir="${jdo.classes.dir}"/> > <javac encoding="ISO-8859-1" srcdir="${src.java.dir}" destdir="${jdo.classes.dir}" debug="${project.build.debug}" classpathref="project.classpath"> > <include name="javax/**/*.java"/> > </javac> > </target> >--> > > <!-- > =================================================================== > TARGET : compile.java > =================================================================== > --> > <target name="compile.java"> > <echo message="==================================================================="/> > <echo message="Your source configuration:"/> > <echo message="src.java.dir = ${src.java.dir}"/> > <echo message="main.classes.dir = ${main.classes.dir}"/> > <echo message="==================================================================="/> > <mkdir dir="${main.classes.dir}"/> > <javac encoding="ISO-8859-1" srcdir="${src.java.dir}" destdir="${main.classes.dir}" debug="${project.build.debug}" classpathref="project.classpath"> > <include name="**/*.java"/> > </javac> > </target> > > <!-- > =================================================================== > TARGET : compile.Enhancer > =================================================================== > --> > <target name="compile.Enhancer" depends="prepare.Enhancer"> > <echo message="==================================================================="/> > <echo message="Your source configuration:"/> > <echo message="Enhancer.src.java.dir = ${Enhancer.src.java.dir}"/> > <echo message="main.classes.dir = ${main.classes.dir}"/> > <echo message="==================================================================="/> > <mkdir dir="${Enhancer.classes.dir}"/> > <javac verbose="true" encoding="ISO-8859-1" srcdir="${Enhancer.src.java.dir}" destdir="${Enhancer.classes.dir}" debug="${project.build.debug}" classpathref="project.classpath"> > <include name="org/jpox/**/*.java"/> > </javac> > <copy todir="${Enhancer.classes.dir}"> > <fileset dir="${Enhancer.src.java.dir}" includes="**/*.properties"/> > </copy> > > </target> > > <!-- > =================================================================== > TARGET : compile.Enhancer.test > =================================================================== > --> > <target name="compile.Enhancer.test"> > <echo message="==================================================================="/> > <echo message="Your test configuration:"/> > <echo message="Enhancer.test.java.dir = ${Enhancer.test.java.dir}"/> > <echo message="test.classes.dir = ${test.classes.dir}"/> > <echo message="==================================================================="/> > <javac encoding="ISO-8859-1" srcdir="${Enhancer.test.java.dir}" destdir="${Enhancer.test.classes.dir}" debug="${project.build.debug}" classpathref="project.classpath"> > <include name="org/jpox/**/*.java"/> > </javac> > </target> > > > <!-- > =================================================================== > TARGET : compile.test > =================================================================== > --> > <target name="compile.test"> > <echo message="==================================================================="/> > <echo message="Your test configuration:"/> > <echo message="test.java.dir = ${test.java.dir}"/> > <echo message="test.classes.dir = ${test.classes.dir}"/> > <echo message="==================================================================="/> > <javac encoding="ISO-8859-1" srcdir="${test.java.dir}" destdir="${test.classes.dir}" debug="${project.build.debug}" classpathref="project.classpath"> > <include name="org/jpox/**/*.java"/> > </javac> > > </target> > > <!-- > =================================================================== > TARGET : enhance.Enhancer > =================================================================== > --> > <target name="enhance.Enhancer" depends="compile,compile.Enhancer"> > <taskdef name="jpox-enhancer" classname="org.jpox.enhancer.tools.EnhancerTask"> > <classpath refid="project.classpath"/> > </taskdef> > <jpox-enhancer failonerror="false" fork="true" dir="${test.classes.dir}" verbose="false" destination="${test.classes.dir}"> > <jvmarg value="-Xmx250M"/> > <classpath> > <path refid="lib.classpath"/> > <pathelement location="${main.classes.dir}"/> > <pathelement location="${Enhancer.classes.dir}"/> > <pathelement location="${test.classes.dir}"/> ><!-- <pathelement location="${jdo.classes.dir}"/> --> > </classpath> > </jpox-enhancer> ><!-- <jpox-enhancer failonerror="false" fork="true" dir="${test.classes.dir}" checkonly="true"> > <jvmarg value="-Xmx250M"/> > <classpath> > <path refid="lib.classpath"/> > <pathelement location="${main.classes.dir}"/> > <pathelement location="${Enhancer.classes.dir}"/> > <pathelement location="${test.classes.dir}"/> > <pathelement location="${jdo.classes.dir}"/> > </classpath> > </jpox-enhancer>--> > </target> > > <!-- > =================================================================== > TARGET : enhance > =================================================================== > --> > <target name="enhance" depends="enhance.Enhancer"/> > > > <!-- > =================================================================== > TARGET : copy.properties > =================================================================== > --> > <target name="copy.properties"> > <copy todir="${main.classes.dir}"> > <fileset dir="${src.java.dir}" includes="**/*.properties"/> > <fileset dir="${src.java.dir}" includes="**/*.dtd"/> > <fileset dir="${src.java.dir}" includes="**/*.xml"/> > </copy> > </target> > > > <!-- > =================================================================== > TARGET : test.copy.properties > =================================================================== > --> > <target name="test.copy.properties"> > <copy todir="${test.classes.dir}"> > <fileset dir="${test.java.dir}" includes="**/*.properties,**/*.jdo,**/*.orm,**/*.jdoquery"/> > </copy> > </target> > > <!-- > =================================================================== > TARGET : test.general.copy.properties > =================================================================== > --> > <target name="test.general.copy.properties"> > <copy todir="${test.classes.dir}"> > <fileset dir="${test.java.dir}" includes="**/*.properties,**/*.jdo,**/*.orm,**/*.jdoquery"/> > </copy> > </target> > > <!-- > =================================================================== > TARGET : test.datastore.copy.properties > =================================================================== > --> > <target name="test.datastore.copy.properties"> > <copy todir="${test.classes.dir}"> > <fileset dir="${test.java.dir}" includes="**/*.properties"/> > </copy> > <copy todir="${test.classes.dir}"> > <fileset dir="${test.java.dir}" includes="**/*.jdod"/> > <mapper type="glob" from="*.jdod" to="*.jdo"/> > </copy> > <copy todir="${test.classes.dir}"> > <fileset dir="${test.java.dir}" includes="**/*.ormd"/> > <mapper type="glob" from="*.ormd" to="*.orm"/> > </copy> > <copy todir="${test.classes.dir}"> > <fileset dir="${test.java.dir}" includes="**/*.jdoquery"/> > </copy> > </target> > > <!-- > =================================================================== > TARGET : test.application.copy.properties > =================================================================== > --> > <target name="test.application.copy.properties" depends="test.copy.properties"> > <copy todir="${test.classes.dir}"> > <fileset dir="${test.java.dir}" includes="**/*.properties"/> > </copy> > <copy todir="${test.classes.dir}"> > <fileset dir="${test.java.dir}" includes="**/*.jdoa"/> > <mapper type="glob" from="*.jdoa" to="*.jdo"/> > </copy> > <copy todir="${test.classes.dir}"> > <fileset dir="${test.java.dir}" includes="**/*.orma"/> > <mapper type="glob" from="*.orma" to="*.orm"/> > </copy> > <copy todir="${test.classes.dir}"> > <fileset dir="${test.java.dir}" includes="**/*.jdoquery"/> > </copy> > </target> > > <!-- > =================================================================== > TARGET : test.schema.copy.properties > =================================================================== > --> > <target name="test.schema.copy.properties"> > <copy todir="${test.classes.dir}"> > <fileset dir="${test.java.dir}" includes="**/*.properties,**/*.jdo,**/*.orm,**/*.jdoquery"/> > </copy> > </target> > > <!-- > =================================================================== > TARGET : test.case.copy.properties > =================================================================== > --> > <target name="test.case.copy.properties"> > <antcall target="test.${test.suite.case.identity}.copy.properties"/> > </target> > > <!-- > =================================================================== > TARGET : test.Enhancer.copy.properties > =================================================================== > --> > <target name="test.Enhancer.copy.properties" depends="test.copy.properties"> > <copy todir="${Enhancer.test.classes.dir}"> > <fileset dir="${Enhancer.test.java.dir}" includes="**/*.properties,**/*.jdo,**/*.orm,**/*.jdoquery"/> > </copy> > </target> > > <!-- > =================================================================== > TARGET : version > =================================================================== > --> > <target name="version"> > <echo message="${Name} ${version}" file="VERSION.txt"/> > </target> > > <!-- > =================================================================== > TARGET : srczip > =================================================================== > --> > <target name="srczip" depends="version"> > <mkdir dir="${dist.dir}"/> > <delete file="${dist.src.file}"/> > <zip zipfile="${dist.src.file}" update="true"> > <zipfileset dir="." prefix="${dist.name}" includes=" >**/*.css, >**/*.gif, >**/*.html, >**/*.java, >build.xml, >build.properties, >checkstyle.xml, >LICENSE.txt, >maven.xml, >project.xml, >project.properties >README.txt, >VERSION.txt" excludes="${javadoc.dir}/**"/> > </zip> > </target> > > <!-- > =================================================================== > TARGET : release > =================================================================== > --> > <target name="release" depends="binzip,bintargz"/> > > <!-- > =================================================================== > TARGET : binzip > =================================================================== > --> > <target name="binzip" depends="version,javadoc,srczip,rar"> > <mkdir dir="${dist.dir}"/> > <delete file="${dist.bin.zip.file}"/> > <zip zipfile="${dist.bin.zip.file}"> > <zipfileset dir="." prefix="${dist.name}" includes=" >${doc.dir}/**/*, >${dist.src.file}, >${jar.file}, >LICENSE.txt, >README.txt, >VERSION.txt" excludes="${doc.dir}/api/src-html/**/*"/> > </zip> > </target> > > <!-- > =================================================================== > TARGET : bintar > =================================================================== > --> > <target name="bintar" depends="version,javadoc,srczip,rar"> > <mkdir dir="${dist.dir}"/> > <delete file="${dist.bin.tar.file}"/> > <tar destfile="${dist.bin.tar.file}"> > <tarfileset dir="." prefix="${dist.name}" includes=" >${doc.dir}/**/*, >${dist.src.file}, >${jar.file}, >LICENSE.html, >README.txt, >VERSION.txt" excludes="${doc.dir}/api/src-html/**/*"/> > </tar> > </target> > > <!-- > =================================================================== > TARGET : bintargz > =================================================================== > --> > <target name="bintargz" depends="bintar"> > <gzip zipfile="${dist.bin.targz.file}" src="${dist.bin.tar.file}"/> > </target> > > <!-- > =================================================================== > TARGET : rar > =================================================================== > --> > <target name="rar" depends="version,jar" description="Generates JCA connector adaptor"> > <mkdir dir="${dist.dir}"/> > <delete file="${dist.rar.file}"/> > <zip zipfile="${dist.rar.file}"> > <zipfileset dir="${dist.dir}" prefix="" fullpath="${dist.name}.jar" includes="${jar.file.nopath}"/> > <zipfileset dir="." prefix="" fullpath="${dependency.jdo.jar.name}" includes="${dependency.jdo.location}"/> > <zipfileset dir="." prefix="" fullpath="${dependency.log4j.jar.name}" includes="${dependency.log4j.location}"/> > <zipfileset dir=".." prefix="META-INF" includes="LICENSE.txt"/> > <zipfileset dir=".." prefix="META-INF" includes="README"/> > <zipfileset dir=".." prefix="META-INF" includes="README.jpox"/> ><!-- <zipfileset dir="." prefix="" includes="VERSION.txt"/> --> > <zipfileset dir="${metainf.dir}" prefix="META-INF" includes="**/*"/> > </zip> > </target> > > <!-- > =================================================================== > TARGET : jar.jdo > =================================================================== > --> ><!-- <target name="jar.jdo" depends="compile.jdo"> > <mkdir dir="${bin.dir}"/> > <zip zipfile="${jdo.jar.file}"> > <zipfileset dir="${jdo.classes.dir}" includes="**/*"/> > </zip> > </target> >--> > > <!-- > =================================================================== > TARGET : jar > =================================================================== > --> > <target name="jar" depends="compile"> > <mkdir dir="${dist.dir}"/> > <jar zipfile="${jar.file}"> <!-- update="true"> --> ><!-- <zipfileset dir="${main.classes.dir}" includes="org/jpox/**/*.class,**/*.properties,**/*.dtd"/> --> > <zipfileset dir="${main.classes.dir}" includes="**/*.class,**/*.properties,**/*.dtd,org/**/*.xml"/> > <zipfileset dir=".." prefix="META-INF" includes="LICENSE.txt,README,README.jpox"/> > <zipfileset dir="${main.classes.dir}/META-INF/plugins" prefix="META-INF/plugins" includes="**.xml"/> > </jar> > <jar zipfile="${Enhancer.jar.file}"> <!-- update="true"> --> > <zipfileset dir="${Enhancer.classes.dir}" includes="**/*.class,**/*.properties,**/*.dtd,org/**/*.xml"/> > <zipfileset dir=".." prefix="META-INF" includes="LICENSE.txt,README,README.jpox"/> > <zipfileset dir="${main.classes.dir}/META-INF/plugins" prefix="META-INF/plugins" includes="**.xml"/> > </jar> > </target> > > <!-- > =================================================================== > TARGET : javadoc > =================================================================== > --> > <target name="javadoc"> > <mkdir dir="${javadoc.dir}"/> > <delete quiet="true" file="${javadoc.dir}/index.html"/> > <javadoc sourcepath="${src.java.dir}" classpathref="project.classpath" destdir="${javadoc.dir}" packagenames="org.jpox.*" overview="${src.java.dir}/overview.html" footer="<a href="http://sourceforge.net/projects/jpox"><img src="http://sourceforge.net/sflogo.php?group_id=35302&type=1" width="88" height="31" border="0" alt="SourceForge.net_Logo"></a>" author="true" source="1.3"> > <link href="http://java.sun.com/j2se/1.3/docs/api/"/> > </javadoc> > </target> > > <!-- > =================================================================== > TARGET : copy-jars > =================================================================== > --> > <target name="copy-jars" description="Copy .jar files into lib, so that the same files are available to build as in the runtime environment."> > <jarlib-resolve property="${dependency.ant.library}" failOnError="false" checkExtension="false"> > <extension extensionName="${dependency.ant.name}"/> > <location location="${dependency.ant.location}"/> > <url url="${dependency.ant.url}" destfile="${dependency.ant.location}"/> > </jarlib-resolve> > <jarlib-resolve property="${dependency.junit.library}" failOnError="false" checkExtension="false"> > <extension extensionName="${dependency.junit.name}"/> > <location location="${dependency.junit.location}"/> > <url url="${dependency.junit.url}" destfile="${dependency.junit.location}"/> > </jarlib-resolve> > <jarlib-resolve property="${dependency.commons-dbcp.library}" failOnError="false" checkExtension="false"> > <extension extensionName="${dependency.commons-dbcp.name}"/> > <location location="${dependency.commons-dbcp.location}"/> > <url url="${dependency.commons-dbcp.url}" destfile="${dependency.commons-dbcp.location}"/> > </jarlib-resolve> > <jarlib-resolve property="${dependency.commons-pool.library}" failOnError="false" checkExtension="false"> > <extension extensionName="${dependency.commons-pool.name}"/> > <location location="${dependency.commons-pool.location}"/> > <url url="${dependency.commons-pool.url}" destfile="${dependency.commons-pool.location}"/> > </jarlib-resolve> > <jarlib-resolve property="${dependency.commons-collections.library}" failOnError="false" checkExtension="false"> > <extension extensionName="${dependency.commons-collections.name}"/> > <location location="${dependency.commons-collections.location}"/> > <url url="${dependency.commons-collections.url}" destfile="${dependency.commons-collections.location}"/> > </jarlib-resolve> > <jarlib-resolve property="${dependency.log4j.library}" failOnError="false" checkExtension="false"> > <extension extensionName="${dependency.log4j.name}"/> > <location location="${dependency.log4j.location}"/> > <url url="${dependency.log4j.url}" destfile="${dependency.log4j.location}"/> > </jarlib-resolve> > <jarlib-resolve property="${dependency.bcel.library}" failOnError="false" checkExtension="false"> > <extension extensionName="${dependency.bcel.name}"/> > <location location="${dependency.bcel.location}"/> > <url url="${dependency.bcel.url}" destfile="${dependency.bcel.location}"/> > </jarlib-resolve> > </target> ></project>
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 134497
: 37511