Changeset 2014
- Timestamp:
- 01/06/09 13:27:15
- Files:
-
- trunk (modified) (1 prop)
- trunk/build.xml (modified) (2 diffs)
- trunk/deployutil/build.xml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk
- Property svn:ignore changed from bin dist .settings .classpath .project .apt_generated libcache applib lib to bin dist .settings .classpath .project .apt_generated libcache applib lib
trunk/build.xml
r2011 r2014 154 154 <fileset id="buildjar.generated.java.sources" refid="empty.fileset" /> 155 155 156 <!-- ==================== Subcomponent Compilation Classpath ==================== -->156 <!-- ==================== Subcomponent Compilation Classpath ==================== 157 157 158 158 <path id="compile.classpath"> … … 164 164 </fileset> 165 165 </path> 166 166 --> 167 167 <!-- =============================================================== 168 168 Locations and jar files built by this project. trunk/deployutil/build.xml
r1953 r2014 9 9 <project name="bedework.deployutil" default="build"> 10 10 <property name="base.name" value="deployutil"/> 11 <property name="lib.dir" location="${org.bedework.default.lib}"/> 11 12 12 13 <target name="init"> 14 <delete dir="${lib.dir}" /> 15 <mkdir dir="${lib.dir}" /> 16 13 17 <dirname property="this.dir" file="${ant.file}"/> 14 18 <property name="source.home" location="${this.dir}/src"/> 19 20 <!-- ==================== Compilation Classpath ==================== --> 21 22 <path id="compile.classpath"> 23 <fileset dir="${lib.dir}"> 24 <include name="*.jar"/> 25 </fileset> 26 <fileset dir="${dist.home}"> 27 <include name="*.jar"/> 28 </fileset> 29 </path> 15 30 </target> 16 31
