|
- <?xml version="1.0"?>
-
- <!--
- =======================================================================
- Build file to fetch optiona libraries for Apache Ant
-
- Copyright (c) 2005 The Apache Software Foundation. All rights
- reserved.
-
- =======================================================================
- -->
- <project name="fetch" default="all" basedir=".">
-
- <description>
- This build file downloads JAR files that optional Ant tasks use,
- and installs them in a location that is accessible the next time Ant runs.
-
- You can choose three locations, by going -Ddest=LOCATION on the command line
- -Ddest=user user lib dir ${user.home}/.ant/lib
- -Ddest=system ant lib dir ${ant.home}/lib --Default--
- -Ddest=optional optional dir ${ant.home}/lib/optional (for Ant developers)
-
- You may also need to set proxy settings. This can be done on the command line,
- or in ${user.home}/.ant/proxy.properties
- proxy.host hostname of proxy
- proxy.port port (default 80)
- proxy.user user (default="")
- proxy.pass pass (default="" )
-
- Note that this project does not download any scripting language implementations.
-
- </description>
-
- <!-- Give user a chance to override without editing this file
- (and without typing -D each time it compiles it) -->
- <property file=".ant.properties"/>
- <property file="${user.home}/.ant.properties"/>
- <property name="lib.dir" location="lib" />
- <property name="optional.dir" location="${lib.dir}/optional" />
- <property name="userlib.dir" location="${user.home}/.ant/lib" />
-
- <!-- load in our properties table -->
- <property file="${lib.dir}/libraries.properties"/>
-
- <!-- configure an HTTP proxy -->
- <property file="${user.home}/.ant/proxy.properties" />
- <target name="setproxy" unless="setproxy.disabled" >
- <property name="proxy.host" value="" />
- <property name="proxy.port" value="80" />
- <property name="proxy.user" value="" />
- <property name="proxy.pass" value="" />
- <echo level="verbose">
- proxy: ${proxy.host}:${proxy.port} [${proxy.user}/${proxy.pass}]
- </echo>
- <setproxy proxyhost="${proxy.host}" proxyport="${proxy.port}"
- proxyuser="${proxy.user}" proxypassword="${proxy.pass}" />
- </target>
-
-
- <target name="pick-dest">
- <condition property="dest.dir"
- value="${lib.dir}">
- <or>
- <equals arg1="${dest}" arg2="system" />
- <not><isset property="dest"/></not>
- </or>
- </condition>
- <condition property="dest.dir"
- value="${optional.dir}">
- <equals arg1="${dest}" arg2="optional" />
- </condition>
- <condition property="dest.dir"
- value="${userlib.dir}">
- <equals arg1="${dest}" arg2="user" />
- </condition>
- <fail>
- Unknown destination : ${dest}
- <condition>
- <not><isset property="dest.dir" /></not>
- </condition>
- </fail>
- <echo>Downloading to ${dest.dir}</echo>
- </target>
-
-
- <target name="probe-m2" >
- <!-- Look for M2 ant tasks in our classpath-->
- <available property="m2.antlib.found"
- resource="org/apache/maven/artifact/ant/antlib.xml" />
- <condition property="m2.antlib.typefound">
- <typefound name="antlib:org.apache.maven.artifact.ant:artifact" />
- </condition>
- </target>
-
-
- <target name="get-m2" depends="setproxy,probe-m2" unless="m2.antlib.found">
- <!-- fetch M2 ant tasks into our repository, if it is not there-->
- <!-- <property name="" /> -->
- <fail>
- Fetch the ant task JAR from http://maven.apache.org/maven2/ant-tasks.html
- </fail>
- </target>
-
-
- <target name="macros" depends="get-m2"
- xmlns:artifact="antlib:org.apache.maven.artifact.ant">
-
- <macrodef name="f2">
- <attribute name="project" />
- <attribute name="archive" default="@{project}"/>
- <sequential>
- <fail>
- Unknown archive @{archive}
- <condition>
- <not>
- <isset property="@{archive}.version"/>
- </not>
- </condition>
- </fail>
- <artifact:dependencies pathID="@{archive}.path">
- <dependency groupID="@{project}"
- artifactID="@{archive}"
- version="${@{archive}.version}"/>
- </artifact:dependencies>
- <!-- now we are left with the problem of getting the files
- into our directory -->
- <copypath destdir="${dest.dir}" pathref="@{archive}.path">
- <flattenmapper/>
- </copypath>
- </sequential>
- </macrodef>
- </target>
-
-
-
- <!-- any init stuff -->
- <target name="init" depends="setproxy,pick-dest,macros" >
-
- </target>
-
-
-
- <target name="diag" depends="init">
- <echoproperties />
- </target>
-
- <target name="logging"
- description="load logging libraries"
- depends="init">
- <f2 project="log4j" />
- <f2 project="commons-logging" archive="commons-logging-api" />
- </target>
-
- <target name="junit"
- description="load junit libraries"
- depends="init">
- <f2 project="junit" />
- </target>
-
- <target name="xml"
- description="load full XML libraries (xalan, resolver)"
- depends="init">
- <f2 project="xalan" />
- <f2 project="xml-resolver" />
- </target>
-
- <target name="networking"
- description="load networking libraries (commons-net; jsch)"
- depends="init">
- <f2 project="commons-net" />
- <f2 project="jsch" />
- </target>
-
- <target name="regexp"
- description="load regexp libraries"
- depends="init">
- <f2 project="regexp" />
- <f2 project="oro" />
- </target>
-
- <target name="antlr"
- description="load antlr libraries"
- depends="init">
- <f2 project="antlr" />
- </target>
-
- <target name="bcel"
- description="load bcel libraries"
- depends="init">
- <f2 project="bcel" />
- </target>
-
- <target name="jdepend"
- description="load jdepend libraries"
- depends="init">
- <f2 project="jdepend" />
- </target>
-
- <target name="bsf"
- description="load bsf libraries"
- depends="init">
- <f2 project="bsf" />
- </target>
-
- <target name="debugging"
- description="internal ant debugging"
- depends="init">
- <f2 project="which" />
- </target>
-
- <target name="all"
- description="load all the libraries"
- depends="logging,junit,xml,networking,regexp,antlr,bcel,jdepend,bsf,debugging" />
-
- </project>
|