Code Search for Developers
 
 
  

build.xml from CSDerby at Krugle


Show build.xml syntax highlighted

<?xml version="1.0"?>

<project default="testdata" basedir="../../../../../../..">

<!-- Set Properties -->
  <!-- User settings -->
  <property file="${user.home}/ant.properties"/>
  <!-- Set property lib dir -->
  <property name="properties.dir" value="tools/ant/properties"/>
  <!-- Significant dirs -->
  <property file="${properties.dir}/dirs.properties"/>
  <property file="${properties.dir}/derbytesting.properties"/>

  <!-- derby testing specific properties files -->
  <property file="${ant.home}/properties/derbytesting.properties"/>
  <property file="${user.home}/properties/derbytesting.properties"/>

<!-- Targets -->
  <target name="testdata" depends="copyfiles"/>

  <target name="copyfiles">
    <copy todir="${out.dir}/${derby.testing.functest.dir}/testData/v1">
      <fileset dir="${derby.testing.src.dir}/${derby.testing.functest.dir}/testData/v1"
        includesfile="${derby.testing.src.dir}/${derby.testing.functest.dir}/testData/v1/copyfiles.ant"/>
    </copy>
    <copy todir="${out.dir}/${derby.testing.functest.dir}/testData/v2">
      <fileset dir="${derby.testing.src.dir}/${derby.testing.functest.dir}/testData/v2"
        includesfile="${derby.testing.src.dir}/${derby.testing.functest.dir}/testData/v2/copyfiles.ant"/>
    </copy>
    <copy todir="${out.dir}/${derby.testing.functest.dir}/testData/ImportExport">
      <fileset dir="${derby.testing.src.dir}/${derby.testing.functest.dir}/testData/ImportExport"
        includesfile="${derby.testing.src.dir}/${derby.testing.functest.dir}/testData/ImportExport/copyfiles.ant"/>
    </copy>
  </target>

</project>





See more files for this project here

CSDerby

CSDerby is not CloudScape-Derby(for Java) but rather Derby forked/ported to CSharp. Specifically it is intended to be a native c# Embedded DB for the mono/net platform with the ADO.NET API instead of the JDBC API.

Project homepage: http://sourceforge.net/projects/csharpderbyport
Programming language(s): Java,SQL
License: apache20

  ImportExport/
    Access1.txt
    Access2.txt
    Access3.txt
    Alt1.asc
    Alt2.asc
    Alt3.asc
    Alt4.asc
    Alt5.asc
    Alt6.asc
    EndOfFile.txt
    Tutor1.asc
    Tutor2.asc
    Tutor3.asc
    copyfiles.ant
    db2ttypes.del
    mixednl.del
    position_info.del
    sqlAnywhere1.txt
    sqlAnywhere2.txt
  v1/
    copyfiles.ant
    f1.txt
    j1v1.jar
  v2/
    copyfiles.ant
    f1.txt
    j1v2.jar
  build.xml