Code Search for Developers
 
 
  

build.xml from SmartFrog at Krugle


Show build.xml syntax highlighted

<?xml version="1.0"?>
<project name="database" default="default"
         xmlns:sf="antlib:org.smartfrog.tools.ant">

  <!--
  /** (C) Copyright 2007 Hewlett-Packard Development Company, LP

  This library is free software; you can redistribute it and/or
  modify it under the terms of the GNU Lesser General Public
  License as published by the Free Software Foundation; either
  version 2.1 of the License, or (at your option) any later version.

  This library is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  Lesser General Public License for more details.

  You should have received a copy of the GNU Lesser General Public
  License along with this library; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

  For more information: www.smartfrog.org

  */
  -->

  <description>
     Build file for Database.
  </description>

  <!-- override point -->
  <property file="build.properties"/>
  <property name="javac.java.version" value="1.5"/>
  <property name="is.component" value="true"/>
  <property name="system.tests.enabled" value="true"/>

  <property name="root.dir" location="../.."/>
  <property name="antbuild.dir" location="${root.dir}/antbuild"/>
  <property name="xml.dir" location="${antbuild.dir}/xml"/>


  <!-- Import common stuff -->
  <import file="${xml.dir}/systemtest.xml"/>
  <import file="${xml.dir}/gui.xml"/>
  <import file="${xml.dir}/ivy-mixin.xml"/>
  <import file="${xml.dir}/dist.xml"/>
  <import file="${xml.dir}/state.xml"/>

  <!---->
  <target name="default" depends="published" />


  <target name="init" depends="core.init">
    <echo message="==================================================================="/>
    <echo message="= ${ant.project.name}"/>
  </target>

</project>




See more files for this project here

SmartFrog

SmartFrog (Smart Framework for Object Groups) is a framework for configuring and automatically activating distributed applications. \r\nThe SmartFrog framework is released under LGPL license.\r\nMore info at: www.smartfrog.org

Project homepage: http://sourceforge.net/projects/smartfrog
Programming language(s): Java,XML
License: other

  doc/
    database_copyright.txt
    database_readme.sxw
    database_uml_diagrams.uml
  src/
    org/
      smartfrog/
        services/
          database/
            core/
              AbstractJdbcOperation.java
              AsyncJdbcOperation.java
              ConnectionOpenCondition.java
              CounterTransactionImpl.java
              JdbcBinding.java
              JdbcBindingImpl.java
              JdbcOperation.java
              JdbcSelect.java
              TerminationTransactionImpl.java
              Transaction.java
              TransactionImpl.java
              components.sf
              example.sf
              operations.sf
            hsqldb/
              components.sf
            mysql/
              IsMysqlLive.java
              binding.sf
              components.sf
              daemon.sf
              operations.sf
  test/
    org/
      smartfrog/
        services/
          database/
            test/
              system/
                core/
                  hsqldb/
                    ConnectionOpenTest.sf
                    HsqldbTest.java
                    TableManipulationTest.sf
                    components.sf
                    hsqldb-sfunit.sf
                  mysql/
                    CheckNoMysqlTest.sf
                    ConnectionOpenTest.sf
                    IsMysqlLiveTest.sf
                    IssueWarningsTest.sf
                    MissingDatabaseTest.sf
                    MysqlStartTest.sf
                    MysqlTest.java
                    ShutdownTest.sf
                    TableManipulationTest.sf
                    UserManipulationTest.sf
                    components.sf
                    junit-tests.sf
                    mysql-sfunit.sf
                  components.sf
    log4j.properties
  .svnignore
  build.xml
  ivy.xml