alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Commons Digester example source code file (build.xml)

This example Commons Digester source code file (build.xml) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Commons Digester tags/keywords

asf, examples, license, license, note, note, or, or, provides, see, the, the, these, you

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.
-->
<!-- 
*******************************************************
API Examples Script
===================
Provides helpful services to get folks up and running
the examples quickly.

* Compile - compiles all the examples to the directories
in which the their source files reside.

* Run - runs each example in turn. 

Note: 
These examples will only build and run if the 
rights jars are in the classpath. The classpath
can be set by copying the build.properties.sample file
in this directory to build.properties and then setting
the properties appropriately. Or by editing the 
build.properties file (based on the build.properties.sample
file in CVS) so that it contains absolute paths.

Note:
build.xml files are provided in each subdirectory. This
provide similar fuctionality for each example individually.

Note:
The examples are graduated. It is best to look at them 
in order. Please consult the documentation for more details.

*******************************************************
-->
<project name="Examples" default="about" basedir=".">
    
  <target name='about'>
    <echo>
*******************************************************
API Examples Script
===================
Provides helpful services to get folks up and running
the examples quickly.

* Compile - compiles all the examples to the directories
in which the their source files reside.

* Run - runs each example in turn. 

Note: 
These examples will only build and run if the 
rights jars are in the classpath. The classpath
can be set by copying the build.properties.sample file
in this directory to build.properties and then setting
the properties appropriately. Or by editing the 
build.properties file (based on the build.properties.sample
file in CVS) so that it contains absolute paths.

Note:
build.xml files are provided in each subdirectory. This
provide similar fuctionality for each example individually.

Note:
The examples are graduated. It is best to look at them 
in order. Please consult the documentation for more details.

*******************************************************
    </echo>
  </target>

  <target name="compile">
    <ant dir="addressbook" target="compile"/>
    <ant dir="catalog" target="compile"/>
  </target>

  <target name="run" depends="compile">
    <ant dir="addressbook" target="compile"/>
    <ant dir="catalog" target="compile"/>
  </target>
  
  <target name="clean">
    <ant dir="addressbook" target="clean"/>
    <ant dir="catalog" target="clean"/>
  </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

 

new blog posts

 

Copyright 1998-2021 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.