[jboss-cvs] jbosssx ...

Anil Saldhana anil.saldhana at jboss.com
Tue Jul 25 13:14:01 EDT 2006


  User: asaldhana
  Date: 06/07/25 13:14:01

  Modified:    jbosssx  build.xml
  Log:
  Enable the resources 
  
  Revision  Changes    Path
  1.69      +12 -2     jbosssx/build.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jbosssx/build.xml,v
  retrieving revision 1.68
  retrieving revision 1.69
  diff -u -b -r1.68 -r1.69
  --- build.xml	28 Jun 2006 02:04:45 -0000	1.68
  +++ build.xml	25 Jul 2006 17:14:01 -0000	1.69
  @@ -14,7 +14,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.68 2006/06/28 02:04:45 asaldhana Exp $ -->
  +<!-- $Id: build.xml,v 1.69 2006/07/25 17:14:01 asaldhana Exp $ -->
   
   <project default="main" name="JBoss/Security">
   
  @@ -105,6 +105,7 @@
       <property name="build.api" value="${module.output}/api"/>
       <property name="build.etc" value="${module.output}/etc"/>
       <property name="build.tests" value="${module.output}/tests"/>
  +    <property name="build.resources" value="${module.output}/resources"/>
   
       <!-- The combined thirdparty classpath -->
       <path id="thirdparty.classpath">
  @@ -151,7 +152,7 @@
        |  documentation compiles.
       -->
     <target name="compile"
  -    depends="compile-parsers, compile-classes, compile-rmi, compile-etc"
  +    depends="compile-parsers, compile-classes, compile-rmi, compile-etc, compile-resources"
       description="Compile all source files."/>
   
     <!-- Compile parsers -->
  @@ -221,6 +222,15 @@
       </copy>
     </target>
   
  +  <!-- Compile resource files -->
  +  <target name="compile-resources" depends="init">
  +    <mkdir dir="${build.resources}"/>
  +    <copy todir="${build.resources}" filtering="yes">
  +      <fileset dir="${source.resources}">
  +        <include name="**/*"/>
  +      </fileset>
  +    </copy>
  +  </target>
   
     <!-- ================================================================== -->
     <!-- Archives                                                           -->
  
  
  



More information about the jboss-cvs-commits mailing list