|
Commons Digester example source code file (build.xml)
The Commons Digester build.xml source code<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <project name="Digester RSS Example" default="compile" basedir="."> <!-- "Digester" RSS Example of the Apache Commons Subproject $Id: build.xml 561230 2007-07-31 04:17:09Z rahul $ --> <!-- ========== Initialize Properties ===================================== --> <property file="build.properties"/> <property file="../../../build.properties"/> <property file="../../../../build.properties"/> <property file="${user.home}/build.properties"/> <!-- ========== External Dependencies ===================================== --> <!-- The directories corresponding to your necessary dependencies --> <property name="jaxp.home" value="/usr/local/jaxp1.1"/> <property name="junit.home" value="/usr/local/junit3.7"/> <property name="commons.home" value="../../../.."/> <property name="beanutils.home" value="${commons.home}/beanutils"/> <property name="collections.home" value="${commons.home}/collections"/> <property name="digester.home" value="${commons.home}/digester"/> <property name="logging.home" value="${commons.home}/logging"/> <!-- ========== Derived Values ============================================ --> <!-- The locations of necessary jar files --> <property name="jaxp.jaxp.jar" value="${jaxp.home}/jaxp.jar"/> <property name="jaxp.parser.jar" value="${jaxp.home}/crimson.jar"/> <property name="junit.jar" value="${junit.home}/junit.jar"/> <property name="commons-beanutils.api" value="${beanutils.home}/dist/docs/api"/> <property name="commons-beanutils.jar" value="${beanutils.home}/dist/commons-beanutils.jar"/> <property name="commons-collections.api" value="${collections.home}/dist/docs/api"/> <property name="commons-collections.jar" value="${collections.home}/dist/commons-collections.jar"/> <property name="commons-digester.jar" value="${digester.home}/dist/commons-digester.jar"/> <property name="commons-logging.api" value="${logging.home}/dist/docs/api"/> <property name="commons-logging.jar" value="${logging.home}/dist/commons-logging.jar"/> <!-- ========== Component Declarations ==================================== --> <!-- The name of this component --> <property name="component.name" value="digester-rss"/> <!-- The primary package name of this component --> <property name="component.package" value="org.apache.commons.digester.rss"/> <!-- The title of this component --> <property name="component.title" value="Digester RSS Example"/> <!-- The current version number of this component --> <property name="component.version" value="1.6-dev"/> <!-- The base directory for compilation targets --> <property name="build.home" value="target"/> <!-- The base directory for component configuration files --> <property name="conf.home" value="src/conf"/> <!-- The base directory for distribution targets --> <property name="dist.home" value="dist"/> <!-- The base directory for component sources --> <property name="source.home" value="src/java"/> <!-- The base directory for unit test sources --> <property name="test.home" value="src/test"/> <!-- ========== Compiler Defaults ========================================= --> <!-- Should Java compilations set the 'debug' compiler option? --> <property name="compile.debug" value="true"/> <!-- Should Java compilations set the 'deprecation' compiler option? --> <property name="compile.deprecation" value="false"/> <!-- Should Java compilations set the 'optimize' compiler option? --> <property name="compile.optimize" value="true"/> <!-- Construct compile classpath --> <path id="compile.classpath"> <pathelement location="${build.home}/classes"/> <pathelement location="${jaxp.jaxp.jar}"/> <pathelement location="${jaxp.parser.jar}"/> <pathelement location="${commons-beanutils.jar}"/> <pathelement location="${commons-collections.jar}"/> <pathelement location="${commons-digester.jar}"/> <pathelement location="${commons-logging.jar}"/> </path> <!-- ========== Test Execution Defaults =================================== --> <property name="suppressLogOutputDuringTests" value="true"/> <property name="log.factoryopt" value="org.apache.commons.logging.Log"/> <property name="log.noop" value="org.apache.commons.logging.impl.NoOpLog"/> <property name="log.class" value="${log.noop}"/> <!-- <property name="logclass" value="org.apache.commons.logging.impl.NoOpLog"/> --> <!-- Construct unit test classpath --> <path id="test.classpath"> <pathelement location="${build.home}/classes"/> <pathelement location="${build.home}/tests"/> <pathelement location="${junit.jar}"/> <pathelement location="${jaxp.jaxp.jar}"/> <pathelement location="${jaxp.parser.jar}"/> <pathelement location="${commons-beanutils.jar}"/> <pathelement location="${commons-collections.jar}"/> <pathelement location="${commons-digester.jar}"/> <pathelement location="${commons-logging.jar}"/> </path> <!-- Should all tests fail if one does? --> <property name="test.failonerror" value="true"/> <!-- The test runner to execute --> <property name="test.runner" value="junit.textui.TestRunner"/> <!-- ========== Executable Targets ======================================== --> <target name="init" description="Initialize and evaluate conditionals"> <echo message="-------- ${component.name} ${component.version} --------"/> <filter token="name" value="${component.package}"/> <filter token="version" value="${component.version}"/> </target> <target name="prepare" depends="init" description="Prepare build directory"> <mkdir dir="${build.home}"/> <mkdir dir="${build.home}/classes"/> <mkdir dir="${build.home}/conf"/> <mkdir dir="${build.home}/tests"/> </target> <target name="static" depends="prepare" description="Copy static files to build directory"> <tstamp/> <copy todir="${build.home}/conf" filtering="on"> <fileset dir="${conf.home}" includes="*.MF"/> </copy> </target> <target name="compile" depends="static" description="Compile shareable components"> <javac srcdir="${source.home}" destdir="${build.home}/classes" debug="${compile.debug}" deprecation="${compile.deprecation}" optimize="${compile.optimize}"> <classpath refid="compile.classpath"/> </javac> <copy todir="${build.home}/classes" filtering="on"> <fileset dir="${source.home}" excludes="**/*.java"/> </copy> <copy file="LICENSE.txt" todir="${build.home}/classes/META-INF"/> </target> <target name="compile.tests" depends="compile" description="Compile unit test cases"> <!-- <javac srcdir="${test.home}" destdir="${build.home}/tests" debug="${compile.debug}" deprecation="${compile.deprecation}" optimize="${compile.optimize}"> <classpath refid="test.classpath"/> </javac> <copy todir="${build.home}/tests" filtering="on"> <fileset dir="${test.home}" excludes="**/*.java"/> </copy> --> </target> <target name="clean" description="Clean build and distribution directories"> <delete dir="${build.home}"/> <delete dir="${dist.home}"/> </target> <target name="all" depends="clean,compile" description="Clean and compile all components"/> <target name="javadoc" depends="compile" description="Create component Javadoc documentation"> <mkdir dir="${dist.home}"/> <mkdir dir="${dist.home}/docs"/> <mkdir dir="${dist.home}/docs/api"/> <javadoc sourcepath="${source.home}" destdir="${dist.home}/docs/api" packagenames="org.apache.commons.*" author="true" private="true" version="true" doctitle="<h1>${component.title} (Version ${component.version})</h1>" windowtitle="${component.title} (Version ${component.version})" bottom="Copyright (c) 2001-2004 - Apache Software Foundation"> <link offline="true" packagelistLoc="${commons-beanutils.api}" href="http://commons.apache.org/beanutils/api/"/> <link offline="true" packagelistLoc="${commons-collections.api}" href="http://commons.apache.org/collections/api/"/> <link offline="true" packagelistLoc="${commons-logging.api}" href="http://commons.apache.org/logging/api/"/> <classpath refid="compile.classpath"/> </javadoc> </target> <target name="dist" depends="compile,javadoc" description="Create binary distribution"> <mkdir dir="${dist.home}"/> <copy file="LICENSE.txt" todir="${dist.home}"/> <mkdir dir="${build.home}/classes/META-INF"/> <jar jarfile="${dist.home}/commons-${component.name}.jar" basedir="${build.home}/classes" manifest="${build.home}/conf/MANIFEST.MF"/> </target> <!-- ========== Unit Test Targets ========================================= --> <target name="test" depends="compile.tests, test.rss " description="Run all unit test cases"> </target> <target name="test.rss" depends="compile.tests" description="Run RSSDigester test cases"> <echo message="Running RSSDigester tests ..."/> <condition property="logopt" value="${log.factoryopt}=${log.class}"> <istrue value="${suppressLogOutputDuringTests}"/> </condition> <java classname="org.apache.commons.digester.rss.RSSDigester" fork="yes"> <jvmarg value="-D${logopt}"/> <classpath refid="test.classpath"/> </java> </target> </project> Other Commons Digester examples (source code examples)Here is a short list of links related to this Commons Digester build.xml source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.