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

Spring Framework example source code file (build.xml)

This example Spring Framework 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 - Spring Framework tags/keywords

build, build, clean, clean, compile, compile, database, geronimo, geronimo, if, image, java, spring, web-inf/lib

The Spring Framework build.xml source code

<?xml version="1.0"?>

<project name="imagedb" basedir="." default="usage">

	<property name="name" value="imagedb"/>

	<property name="war.dir" value="war"/>
	<property name="src.dir" value="src"/>
	<property name="build.dir" value=".classes"/>
	<property name="weblib.dir" value="${war.dir}/WEB-INF/lib"/>
	<property name="dist.dir" value="dist"/>

	<property name="spring.root" value="../.."/>


	<path id="master-classpath">

		<fileset dir="${spring.root}/lib/j2ee">
			<include name="servlet-api.jar"/>
		</fileset>
		<fileset dir="${spring.root}/lib/jakarta-commons">
			<include name="commons-logging.jar"/>
		</fileset>
		<fileset dir="${spring.root}/lib/quartz">
			<include name="quartz*.jar"/>
		</fileset>
		<fileset dir="${spring.root}/dist">
			<include name="spring.jar"/>
		</fileset>
		<fileset dir="${spring.root}/dist/modules">
			<include name="spring-webmvc.jar"/>
		</fileset>

	</path>


	<target name="usage">

		<echo message=""/>
		<echo message="Spring Image Database build file"/>
		<echo message="------------------------------------------------------"/>
		<echo message=""/>
		<echo message="Available targets are:"/>
		<echo message=""/>
		<echo message="clean             --> Clean output dirs"/>
		<echo message="build             --> Compile main Java sources and copy libraries"/>
		<echo message="warfile           --> Build the web application archive"/>
		<echo message="all               --> Clean, build, warfile"/>
		<echo message="geronimo.warfile  --> Build the web application archive (specifically for Geronimo)"/>
		<echo message=""/>

	</target>


	<target name="clean" description="Clean output dirs (build, weblib, dist)">

		<delete dir="${build.dir}"/>
		<delete dir="${weblib.dir}"/>
		<delete dir="${dist.dir}"/>

	</target>


	<target name="build" description="Compile main source tree java files into class files, generate jar files">

		<mkdir dir="${build.dir}"/>

		<javac destdir="${build.dir}" source="1.5" target="1.5" debug="true"
				deprecation="false" optimize="false" failonerror="true">
			<src path="${src.dir}"/>
			<classpath refid="master-classpath"/>
		</javac>

		<copy todir="${build.dir}" preservelastmodified="true">
			<fileset dir="${src.dir}">
				<include name="**/*.xml"/>
			</fileset>
		</copy>

		<mkdir dir="${weblib.dir}"/>

		<jar jarfile="${weblib.dir}/${name}.jar" compress="true" basedir="${build.dir}"/>

		<copy todir="${weblib.dir}" preservelastmodified="true">
			<fileset dir="${spring.root}/lib/c3p0">
				<include name="c3p0*.jar"/>
			</fileset>
			<fileset dir="${spring.root}/lib/freemarker">
				<include name="freemarker.jar"/>
			</fileset>
			<fileset dir="${spring.root}/lib/jakarta-commons">
				<include name="commons-collections.jar"/>
				<include name="commons-io.jar"/>
				<include name="commons-fileupload.jar"/>
				<include name="commons-lang.jar"/>
				<include name="commons-logging.jar"/>
			</fileset>
			<fileset dir="${spring.root}/lib/j2ee">
				<include name="activation.jar"/>
				<include name="jta.jar"/>
				<include name="mail.jar"/>
			</fileset>
			<fileset dir="${spring.root}/lib/quartz">
				<include name="quartz*.jar"/>
			</fileset>
			<fileset dir="${spring.root}/lib/velocity">
				<include name="velocity-1.5*.jar"/>
			</fileset>
			<fileset dir="${spring.root}/dist">
				<include name="spring.jar"/>
			</fileset>
			<fileset dir="${spring.root}/dist/modules">
				<include name="spring-webmvc.jar"/>
			</fileset>
		</copy>

	</target>


	<target name="dist" depends="warfile">
		<!-- 
			Delegate to warfile target by depending on it. dist is just to offer
			a generic target name across all Spring sample apps that may be used
			for autobuilds testing.
		-->
	</target>


	<target name="warfile" depends="build" description="Build the web application archive">

		<antcall target="create.warfile">
			<!-- not interested in Geronimo deploy plan -->
			<param name="warfile.excludes" value="WEB-INF/geronimo-web.xml"/>
		</antcall>

	</target>


	<target name="all" depends="clean,build,warfile" description="Clean,build,warfile"/>


	<!--
	If you are going to deploy the application into Geronimo (or an
	application server variant of Geronimo), run this target in preference
	to the plain 'warfile'. This is required because of the Geronimo
	commons-logging issue.
	-->
	<target name="geronimo.warfile" depends="build"
			description="Build the web application archive packaged specifically for Geronimo">

		<antcall target="create.warfile">
			<!-- do not deploy commons-logging with the web app -->
			<param name="warfile.excludes" value="WEB-INF/lib/commons-logging.jar"/>
		</antcall>

	</target>	


	<target name="create.warfile" depends="build">

		<mkdir dir="${dist.dir}"/>

		<war warfile="${dist.dir}/${name}.war" basedir="${war.dir}" webxml="${war.dir}/WEB-INF/web.xml">
			<include name="*"/>
			<include name="WEB-INF/*.*"/>
			<exclude name="WEB-INF/web.xml"/>
			<include name="WEB-INF/lib/**"/>
			<include name="WEB-INF/views/**"/>
			<exclude name="**/.*"/>
			<exclude name="${warfile.excludes}"/>
		</war>

	</target>

</project>

Other Spring Framework examples (source code examples)

Here is a short list of links related to this Spring Framework 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.