
impex.impex-legacy-bundle.1.0.0.source-code.build.xml Maven / Gradle / Ivy
Go to download
This project creates a bundle of the Impex legacy tool that is decoupled from Subversion.
It creates a jar file that has the exact same binaries, source, directory structure,
and layout as the Impex contained inside Subversion.
Since it is published as a versioned jar file, it can be referenced
in other processes (like the Rice binary release process) without those processes
needing the ability to connect back to Subversion to check out the tool.
Processes that need access to the legacy Impex tool can thus express a normal maven dependency
in order to obtain it.
The newest version!
<?xml version="1.0" encoding="UTF-8"?> <!-- ====================================================================== Apr 14, 2009 10:34:33 AM Will wrap the impex tool to provide for imports from multiple projects (e.g., rice base + KFS) into a single schema. ====================================================================== --> <project name="kul-cfg-dbs" default="help"> <property file="${user.home}/impex-build.properties" /> <property name="kfs.svn.dir" value="kfs-cfg-dbs/trunk"/> <property name="rice.svn.dir" value="rice-cfg-dbs/branches/rice-release-1-0-0-br"/> <property name="rice-kuali.svn.dir" value="rice-cfg-dbs/rice-kuali-client-db/branches/rice-release-1-0-0-br"/> <property name="rice-client-only.svn.dir" value="rice-cfg-dbs/rice-client-db/branches/rice-release-1-0-0-br"/> <property name="kfs-import-template.properties.file" location="kfs-import-template.properties" /> <property name="kfs-import.properties.file" location="kfs-import.properties" /> <property name="rice-import-template.properties.file" location="rice-import-template.properties" /> <property name="rice-import.properties.file" location="rice-import.properties" /> <!-- ================================= target: import ================================= --> <target name="import-kfs"> <loadfile property="kfs.props" srcfile="${kfs-import-template.properties.file}"> <filterchain><expandproperties/></filterchain> </loadfile> <echo file="${kfs-import.properties.file}" message="${kfs.props}" /> <ant inheritall="no" antfile="impex/build.xml" target="create-schema"> <property name="impex.properties.file" value="${kfs-import.properties.file}"/> </ant> </target> <!-- ================================= target: import-rice ================================= --> <target name="import-rice"> </target> <!-- ================================= target: import-rice-client-only ================================= --> <target name="import-rice-client-only"> </target> <!-- TODO: check out appropriate project into internal directory set properties im preparation for impex tool run import how to handle schema create and empty? --> <!-- - - - - - - - - - - - - - - - - - target: help - - - - - - - - - - - - - - - - - --> <target name="help"> </target> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy