Code Search for Developers
 
 
  

build.xml from CSDerby at Krugle


Show build.xml syntax highlighted

<?xml version="1.0"?>

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

<!-- Set Properties -->
  <!-- User settings -->
  <property file="${user.home}/ant.properties"/>
  <!-- Set property lib dir -->
  <property name="properties.dir" value="${ant.home}/properties"/>
  <!-- Significant dirs -->
  <property file="${properties.dir}/dirs.properties"/>
  <!-- Compiler settings -->
  <property file="${properties.dir}/${build.compiler}.properties"/>
  <!-- Compile-time classpath properties files -->
  <property file="${properties.dir}/extrapath.properties"/>
  <property file="${properties.dir}/compilepath.properties"/>

<!-- Targets -->
  <target name="demo" depends="compile"/>

  <target name="compile">
    <javac
      bootclasspath="${empty}"
      nowarn="on"
      debug="${debug}"
      depend="${depend}"
      deprecation="${deprecation}"
      optimize="${optimize}"
      proceed="${proceed}"
      verbose="${verbose}"
      srcdir="nserverdemo"
      destdir="${out.dir}"
      includes="Simple*">
      <classpath>
        <pathelement path="${java14compile.classpath}"/>
        <pathelement location="${jcc}"/>
      </classpath>
    </javac>
    <javac
      bootclasspath="${empty}"
      nowarn="on"
      debug="${debug}"
      depend="${depend}"
      deprecation="${deprecation}"
      optimize="${optimize}"
      proceed="${proceed}"
      verbose="${verbose}"
      srcdir="."
      destdir="${out.dir}"
      includes="nserverdemo/**"
      excludes="nserverdemo/Simple*">
      <classpath>
        <pathelement path="${java14compile.classpath}"/>
        <pathelement location="${jcc}"/>
      </classpath>
    </javac>
    <javac
      bootclasspath="${empty}"
      nowarn="on"
      debug="${debug}"
      depend="${depend}"
      deprecation="${deprecation}"
      optimize="${optimize}"
      proceed="${proceed}"
      verbose="${verbose}"
      srcdir="${derby.demo.src.dir}/simple"
      destdir="${out.dir}">
      <classpath>
        <pathelement location="${javasrc.dir};${jcc};${jta1_2}"/>
        <pathelement path="${java13compile.classpath};${jcc};${jta1_2}"/>
      </classpath>
    </javac>
  </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

  nserverdemo/
    NetworkServerUtil.java
    NsSample.java
    NsSampleClientThread.java
    SimpleNetworkClientSample.java
    SimpleNetworkServerSample.java
    nserverdemo.html
    readme.html
    simpleserversample.html
  simple/
    SimpleApp.java
    derby.properties
    example.html
  build.xml
  csfull.css
  demo.html
  navbar.html
  readme.html