Code Search for Developers
 
 
  

build.xml from CSDerby at Krugle


Show build.xml syntax highlighted

<?xml version="1.0"?>

<project default="compile" 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"/>
  <!-- Compiler settings -->
<property file="${properties.dir}/defaultcompiler.properties"/> 
  <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="compile" depends="compile_tools_impl_jdk14"/>

  <target name="parser">
    <ant antfile="${src.dir}/build.xml" target="genParser">
      <property name="msg" value="Generating ij parser..."/>
      <property name="directory" value="${derby.tools.dir}/impl/tools/ij"/>
      <property name="rmfiles" value="ijimplparser_rm.files"/>
      <property name="jjfile" value="ij.jj"/>
      <property name="chkfile" value="ij.java"/>
    </ant>
    <ant antfile="${src.dir}/build.xml" target="genParser">
      <property name="msg" value="Generating mtGrammar parser..."/>
      <property name="directory" value="${derby.tools.dir}/impl/tools/ij"/>
      <property name="rmfiles" value="mtparser_rm.files"/>
      <property name="jjfile" value="mtGrammar.jj"/>
      <property name="chkfile" value="mtGrammar.java"/>
    </ant>
  </target>

  <target name="compile_tools_impl">

    <javac
      bootclasspath="${empty}"
      nowarn="on"
      debug="${debug}"
      depend="${depend}"
      deprecation="${deprecation}"
      optimize="${optimize}"
      proceed="${proceed}"
      verbose="${verbose}"
      srcdir="${derby.tools.src.dir}"
      destdir="${out.dir}">
      <classpath>
        <pathelement path="${compile.classpath}"/>
      </classpath>
      <include name="${derby.dir}/impl/tools/**"/>
      <exclude name="${derby.dir}/impl/tools/ij/xaHelper.java"/>
      <exclude name="${derby.dir}/impl/tools/ij/Main14.java"/>
      <exclude name="${derby.dir}/impl/tools/ij/utilMain14.java"/>
    </javac>
   </target>
  <target name="compile_tools_impl_jdk14" depends="compile_tools_impl">
    <javac
      bootclasspath="${empty}"
      nowarn="on"
      debug="${debug}"
      depend="${depend}"
      deprecation="${deprecation}"
      optimize="${optimize}"
      proceed="${proceed}"
      verbose="${verbose}"
      srcdir="${derby.tools.src.dir}"
      destdir="${out.dir}">
      <classpath>
        <pathelement path="${java14compile.classpath}"/>
      </classpath>
      <include name="${derby.dir}/impl/tools/ij/xaHelper.java"/>
      <include name="${derby.dir}/impl/tools/ij/Main14.java"/>
      <include name="${derby.dir}/impl/tools/ij/utilMain14.java"/>
    </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

  dblook/
    DB_Alias.java
    DB_Check.java
    DB_Index.java
    DB_Jar.java
    DB_Key.java
    DB_Schema.java
    DB_Table.java
    DB_Trigger.java
    DB_View.java
    Logs.java
  ij/
    AsyncStatement.java
    AttributeHolder.java
    CharStream.java
    ConnectionEnv.java
    Main.java
    Main14.java
    ParseException.java
    Session.java
    SimpleCharStream.java
    StatementFinder.java
    Token.java
    TokenMgrError.java
    UCode_CharStream.java
    ij.java
    ij.jj
    ijConnectionResult.java
    ijConstants.java
    ijException.java
    ijExceptionResult.java
    ijFatalException.java
    ijMultiResult.java
    ijResult.java
    ijResultImpl.java
    ijRowResult.java
    ijStatementResult.java
    ijTokenException.java
    ijTokenManager.java
    ijVectorResult.java
    ijWarningResult.java
    mtGrammar.java
    mtGrammar.jj
    mtGrammarConstants.java
    mtGrammarTokenManager.java
    mtTestCase.java
    mtTestSuite.java
    mtTester.java
    mtTime.java
    util.java
    utilMain.java
    utilMain14.java
    xaAbstractHelper.java
    xaHelper.java
  sysinfo/
    Main.java
    ZipInfoProperties.java
  build.xml