Changeset 2014

Show
Ignore:
Timestamp:
01/06/09 13:27:15
Author:
johnsa
Message:

update build

Files:

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  
    154154    <fileset id="buildjar.generated.java.sources" refid="empty.fileset" /> 
    155155 
    156     <!-- ==================== Subcomponent Compilation Classpath ==================== --> 
     156    <!-- ==================== Subcomponent Compilation Classpath ==================== 
    157157 
    158158    <path id="compile.classpath"> 
     
    164164      </fileset> 
    165165    </path> 
    166  
     166--> 
    167167    <!-- =============================================================== 
    168168              Locations and jar files built by this project. 
  • trunk/deployutil/build.xml

    r1953 r2014  
    99<project name="bedework.deployutil" default="build"> 
    1010  <property name="base.name" value="deployutil"/> 
     11  <property name="lib.dir" location="${org.bedework.default.lib}"/> 
    1112 
    1213  <target name="init"> 
     14     <delete dir="${lib.dir}" /> 
     15    <mkdir dir="${lib.dir}" /> 
     16 
    1317    <dirname property="this.dir" file="${ant.file}"/> 
    1418    <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> 
    1530  </target> 
    1631