jicarilla-sandbox/buildsystem/sample build.xml,NONE,1.1 dependencies.list,NONE,1.1 project.properties,NONE,1.1

[email protected]
Newsgroups gmane.comp.java.jicarilla.cvs
Message-ID <[email protected]>
Update of /cvsroot/jicarilla/jicarilla-sandbox/buildsystem/sample
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25848/buildsystem/sample

Added Files:
	build.xml dependencies.list project.properties 
Log Message:
a little demo

--- NEW FILE: build.xml ---
<?xml version="1.0"?>

<project default="jar" name="JBS-based build" basedir=".">
    <property file="project.properties"/>

    <target name="need-for-jbs" unless="jbs.available">
<fail>
===================================================================
BUILD SYSTEM FAILURE!
===================================================================

 The Jicarilla BuildSystem cannot be found. Try setting the jbs.home
 property in the file project.properties to the correct location
 (jbs.home is currently set to ${jbs.home}).
</fail>
    </target>

    <target name="init">
        <property name="jbs.home" value="${user.home}/.jbs"/>
        <available file="${jbs.home}/build-project.xml"
                property="jbs.available"/>

        <antcall target="need-for-jbs"/>
    </target>

    <target name="delegate" depends="init">
        <ant inheritRefs="true"
                inheritAll="true"
                target="jbs:${target}"
                antfile="${jbs.home}/build-project.xml"/>
    </target>

    <target name="compile">
        <antcall target="delegate">
            <param name="target" value="compile"/>
        </antcall>
    </target>
    <target name="test">
        <antcall target="delegate">
            <param name="target" value="test"/>
        </antcall>
    </target>
    <target name="jar">
        <antcall target="delegate">
            <param name="target" value="jar"/>
        </antcall>
    </target>
    <target name="dist">
        <antcall target="delegate">
            <param name="target" value="dist"/>
        </antcall>
    </target>
    <target name="reports">
        <antcall target="delegate">
            <param name="target" value="reports"/>
        </antcall>
    </target>
</project>

--- NEW FILE: dependencies.list ---
# Dependencies (test file)
#
# artifact-id version groupid repository
#
commons-lang 1.0
dna-api 1.0 dna http://dist.codehaus.org

--- NEW FILE: project.properties ---
project.name=sample



-------------------------------------------------------
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.