-rework build scripts to pull all dependencies from current.bin.dir after being copied from lib source folders

-add build scripts for Spring.Template.Velocity.Castle projects
This commit is contained in:
Steve Bohlen
2015-04-18 10:24:55 -04:00
parent f966b45763
commit c900e6353e
49 changed files with 594 additions and 213 deletions

View File

@@ -0,0 +1,70 @@
<project name="CopyLibToBinHelpers">
<target name="copycommonlogginglibtobin">
<echo message="${common.logging.lib.dir}" />
<copy todir="${current.bin.dir}" overwrite="true">
<fileset basedir="${common.logging.lib.dir}">
<include name="**/*.dll" />
</fileset>
</copy>
<echo message="${common.logging.core.lib.dir}" />
<copy todir="${current.bin.dir}" overwrite="true">
<fileset basedir="${common.logging.core.lib.dir}">
<include name="**/*.dll" />
</fileset>
</copy>
</target>
<target name="copynh3libtobin">
<echo message="${nh3.lib.dir}" />
<copy todir="${current.bin.dir}" overwrite="true">
<fileset basedir="${nh3.lib.dir}">
<include name="**/*.dll" />
</fileset>
</copy>
<echo message="${iesi3.lib.dir}" />
<copy todir="${current.bin.dir}" overwrite="true">
<fileset basedir="${iesi3.lib.dir}">
<include name="**/*.dll" />
</fileset>
</copy>
</target>
<target name="copynh4libtobin">
<echo message="${nh4.lib.dir}" />
<copy todir="${current.bin.dir}" overwrite="true">
<fileset basedir="${nh4.lib.dir}">
<include name="**/*.dll" />
</fileset>
</copy>
<echo message="${iesi4.lib.dir}" />
<copy todir="${current.bin.dir}" overwrite="true">
<fileset basedir="${iesi4.lib.dir}">
<include name="**/*.dll" />
</fileset>
</copy>
</target>
<target name="copyquartz2libtobin">
<echo message="${quartz2.lib.dir}" />
<copy todir="${current.bin.dir}" overwrite="true">
<fileset basedir="${quartz2.lib.dir}">
<include name="**/*.dll" />
</fileset>
</copy>
</target>
<target name="copynvelocitylibtobin">
<echo message="${nvelocity.lib.dir}" />
<copy todir="${current.bin.dir}" overwrite="true">
<fileset basedir="${nvelocity.lib.dir}">
<include name="**/NVelocity.dll" />
</fileset>
</copy>
</target>
</project>