Subversion Repositories SmartDukaan

Rev

Rev 1045 | Rev 1196 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1045 Rev 1107
Line 82... Line 82...
82
 
82
 
83
	-->
83
	-->
84
	<target name="init" depends="clean"  description="Create build directory">
84
	<target name="init" depends="clean"  description="Create build directory">
85
 
85
 
86
		<mkdir dir="${build.home}" />
86
		<mkdir dir="${build.home}" />
-
 
87
		<mkdir dir="${build.home}/WEB-INF/classes" />
-
 
88
		<mkdir dir="${build.home}/WEB-INF/lib" />
87
		<property name="yuic" location="${thirdparty.location}/readonly/yuicompressor-2.4.2/yuicompressor-2.4.2.jar"/>
89
		<property name="yuic" location="${thirdparty.location}/readonly/yuicompressor-2.4.2/yuicompressor-2.4.2.jar"/>
88
 
90
 
89
	</target>
91
	</target>
90
 
92
 
91
	<!-- ==================== Compile Target ================================== -->
93
	<!-- ==================== Compile Target ================================== -->
Line 97... Line 99...
97
	  This example assumes that you will be including your classes in an
99
	  This example assumes that you will be including your classes in an
98
	  unpacked directory hierarchy under "/WEB-INF/classes".
100
	  unpacked directory hierarchy under "/WEB-INF/classes".
99
 
101
 
100
	-->
102
	-->
101
	<target name="compile" depends="init" description="Compile Java sources">
103
	<target name="compile" depends="init" description="Compile Java sources">
102
 
-
 
103
 
-
 
104
		<mkdir dir="${build.home}/WEB-INF/classes" />
-
 
105
		<mkdir dir="${build.home}/WEB-INF/lib" />
-
 
106
 
-
 
107
		<javac srcdir="${source.home}"
104
		<javac srcdir="${source.home}"
108
				destdir="${build.home}/WEB-INF/classes"
105
				destdir="${build.home}/WEB-INF/classes"
109
				debug="${compile.debug}"
106
				debug="${compile.debug}"
110
				deprecation="${compile.deprecation}"
107
				deprecation="${compile.deprecation}"
111
				optimize="${compile.optimize}"
108
				optimize="${compile.optimize}"