You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ad...@apache.org on 2003/07/03 12:13:36 UTC

cvs commit: jakarta-commons-sandbox/vfs build.xml

adammurdoch    2003/07/03 03:13:35

  Modified:    vfs      build.xml
  Log:
  Fixed broken gump build.
  
  Revision  Changes    Path
  1.18      +10 -6     jakarta-commons-sandbox/vfs/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/vfs/build.xml,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- build.xml	28 Jun 2003 12:33:24 -0000	1.17
  +++ build.xml	3 Jul 2003 10:13:35 -0000	1.18
  @@ -54,6 +54,14 @@
         <condition property="jsch.avail">
             <available classname="com.jcraft.jsch.ChannelSftp" classpathref="classpath"/>
         </condition>
  +      <patternset id="excludes">
  +          <exclude name="**/provider/ftp/**" unless="commons-net.avail" />
  +          <exclude name="**/provider/http/**" unless="commons-httpclient.avail" />
  +          <exclude name="**/provider/webdav/**" unless="commons-httpclient.avail" />
  +          <exclude name="**/provider/webdav/**" unless="slide.avail" />
  +          <exclude name="**/provider/smb/**" unless="jcifs.avail" />
  +          <exclude name="**/provider/sftp/**" unless="jsch.avail" />
  +      </patternset>
   
       <mkdir dir="${classesdir}">
       </mkdir>
  @@ -62,12 +70,7 @@
           <pathelement location="src/java">
           </pathelement>
         </src>
  -        <exclude name="**/provider/ftp/**" unless="commons-net.avail" />
  -        <exclude name="**/provider/http/**" unless="commons-httpclient.avail" />
  -        <exclude name="**/provider/webdav/**" unless="commons-httpclient.avail" />
  -        <exclude name="**/provider/webdav/**" unless="slide.avail" />
  -        <exclude name="**/provider/smb/**" unless="jcifs.avail" />
  -        <exclude name="**/provider/sftp/**" unless="jsch.avail" />
  +        <patternset refid="excludes"/>
         <classpath refid="classpath"/>
       </javac>
       <copy todir="${classesdir}">
  @@ -143,6 +146,7 @@
           <pathelement location="src/test">
           </pathelement>
         </src>
  +        <patternset refid="excludes"/>
         <classpath>
           <fileset dir="${libdir}">
             <include name="*.jar">
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org