leosimons    2003/11/09 07:52:20

  Modified:    configuration build.xml
  Added:       compatibility build.xml
               component build.xml
               datasource build.xml
               lifecycle build.xml
               monitor  build.xml
               pool     build.xml
               sourceresolve build.xml
               store    build.xml
               thread   build.xml
               xmlutil  build.xml
  Log:
  adding build.xml files for gump integration
  
  Revision  Changes    Path
  1.1                  avalon-excalibur/compatibility/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  <project default="warning" name="Gump Build Support - DO NOT HAND-EDIT!!!" 
basedir=".">
  
      <property file="${basedir}/project.properties/>
      <property file="${basedir}/../project.properties"/>
  
      <target name="need-for-common-build" unless="avalon.buildsystem.available">
  <fail>
  ===================================================================
  BUILD SYSTEM FAILURE!
  ===================================================================
  
  a required file, ../maven-common-gump-build.xml,
  cannot be found. Try setting the avalon.buildsystem property in
  project.properties to the correct location.
  </fail>
      </target>
  
  
      <target name="delegate">
          <available
                  file="../maven-common-gump-build.xml"
                  property="avalon.buildsystem.available"/>
          <antcall target="need-for-common-build"/>
  
          <ant
                  inheritRefs="true"
                  target="avalon:${target}"
                  antfile="../maven-common-gump-build.xml"
                  inheritAll="true"/>
      </target>
  
      <target name="warning">
          <antcall target="delegate">
              <param name="target" value="warning"/>
          </antcall>
      </target>
  
      <target name="jar">
          <antcall target="delegate">
              <param name="target" value="jar"/>
          </antcall>
      </target>
  
      <target name="javadocs">
          <antcall target="delegate">
              <param name="target" value="javadocs"/>
          </antcall>
      </target>
  
      <target name="dist">
          <antcall target="delegate">
              <param name="target" value="dist"/>
          </antcall>
      </target>
  
  </project>
  
  
  
  1.1                  avalon-excalibur/component/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  <project default="warning" name="Gump Build Support - DO NOT HAND-EDIT!!!" 
basedir=".">
  
      <property file="${basedir}/project.properties/>
      <property file="${basedir}/../project.properties"/>
  
      <target name="need-for-common-build" unless="avalon.buildsystem.available">
  <fail>
  ===================================================================
  BUILD SYSTEM FAILURE!
  ===================================================================
  
  a required file, ../maven-common-gump-build.xml,
  cannot be found. Try setting the avalon.buildsystem property in
  project.properties to the correct location.
  </fail>
      </target>
  
  
      <target name="delegate">
          <available
                  file="../maven-common-gump-build.xml"
                  property="avalon.buildsystem.available"/>
          <antcall target="need-for-common-build"/>
  
          <ant
                  inheritRefs="true"
                  target="avalon:${target}"
                  antfile="../maven-common-gump-build.xml"
                  inheritAll="true"/>
      </target>
  
      <target name="warning">
          <antcall target="delegate">
              <param name="target" value="warning"/>
          </antcall>
      </target>
  
      <target name="jar">
          <antcall target="delegate">
              <param name="target" value="jar"/>
          </antcall>
      </target>
  
      <target name="javadocs">
          <antcall target="delegate">
              <param name="target" value="javadocs"/>
          </antcall>
      </target>
  
      <target name="dist">
          <antcall target="delegate">
              <param name="target" value="dist"/>
          </antcall>
      </target>
  
  </project>
  
  
  
  1.25      +58 -57    avalon-excalibur/configuration/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/avalon-excalibur/configuration/build.xml,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- build.xml 27 Aug 2003 13:39:28 -0000      1.24
  +++ build.xml 9 Nov 2003 15:52:20 -0000       1.25
  @@ -1,57 +1,58 @@
  -<?xml version="1.0" encoding="UTF-8"?>
  -
  -
  -<project default="warning" name="Gump Build Support - DO NOT HAND-EDIT!!!" 
basedir=".">
  -
  -    <property file="${basedir}/project.properties"></property>
  -
  -
  -    <property file="${basedir}/../project.properties"></property>
  -    <property file="${basedir}/../../project.properties"></property>
  -
  -    <target name="need-for-common-build" unless="avalon.buildsystem.available">
  -<fail>
  -===================================================================
  -BUILD SYSTEM FAILURE!
  -===================================================================
  -
  -a required file, 
../avalon-buildsystem/avalon-buildsystem/maven-common-gump-build.xml,
  -cannot be found. Try setting the avalon.buildsystem property in
  -project.properties to the correct location.
  -</fail>
  -    </target>
  -
  -
  -    <target name="delegate">
  -        <available file="${avalon.buildsystem}/maven-common-gump-build.xml"
  -                property="avalon.buildsystem.available"></available>
  -        <antcall target="need-for-common-build"></antcall>
  -
  -        <ant inheritRefs="true" target="avalon:${target}" 
antfile="${avalon.buildsystem}/maven-common-gump-build.xml" inheritAll="true"></ant>
  -    </target>
  -
  -    <target name="warning">
  -        <antcall target="delegate">
  -            <param name="target" value="warning"></param>
  -        </antcall>
  -    </target>
  -
  -    <target name="jar">
  -        <antcall target="delegate">
  -            <param name="target" value="jar"></param>
  -        </antcall>
  -    </target>
  -
  -    <target name="javadocs">
  -        <antcall target="delegate">
  -            <param name="target" value="javadocs"></param>
  -        </antcall>
  -    </target>
  -
  -    <target name="dist">
  -        <antcall target="delegate">
  -            <param name="target" value="dist"></param>
  -        </antcall>
  -    </target>
  -
  -</project>
  +<?xml version="1.0" encoding="UTF-8"?>
  +
  +<project default="warning" name="Gump Build Support - DO NOT HAND-EDIT!!!" 
basedir=".">
  +
  +    <property file="${basedir}/project.properties/>
  +    <property file="${basedir}/../project.properties"/>
  +
  +    <target name="need-for-common-build" unless="avalon.buildsystem.available">
  +<fail>
  +===================================================================
  +BUILD SYSTEM FAILURE!
  +===================================================================
  +
  +a required file, 
../avalon-buildsystem/avalon-buildsystem/maven-common-gump-build.xml,
  +cannot be found. Try setting the avalon.buildsystem property in
  +project.properties to the correct location.
  +</fail>
  +    </target>
  +
  +
  +    <target name="delegate">
  +        <available
  +                file="${avalon.buildsystem}/maven-common-gump-build.xml"
  +                property="avalon.buildsystem.available"/>
  +        <antcall target="need-for-common-build"/>
  +
  +        <ant
  +                inheritRefs="true"
  +                target="avalon:${target}"
  +                antfile="${avalon.buildsystem}/maven-common-gump-build.xml"
  +                inheritAll="true"/>
  +    </target>
  +
  +    <target name="warning">
  +        <antcall target="delegate">
  +            <param name="target" value="warning"/>
  +        </antcall>
  +    </target>
  +
  +    <target name="jar">
  +        <antcall target="delegate">
  +            <param name="target" value="jar"/>
  +        </antcall>
  +    </target>
  +
  +    <target name="javadocs">
  +        <antcall target="delegate">
  +            <param name="target" value="javadocs"/>
  +        </antcall>
  +    </target>
  +
  +    <target name="dist">
  +        <antcall target="delegate">
  +            <param name="target" value="dist"/>
  +        </antcall>
  +    </target>
  +
  +</project>
  
  
  
  1.1                  avalon-excalibur/datasource/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  <project default="warning" name="Gump Build Support - DO NOT HAND-EDIT!!!" 
basedir=".">
  
      <property file="${basedir}/project.properties/>
      <property file="${basedir}/../project.properties"/>
  
      <target name="need-for-common-build" unless="avalon.buildsystem.available">
  <fail>
  ===================================================================
  BUILD SYSTEM FAILURE!
  ===================================================================
  
  a required file, ../maven-common-gump-build.xml,
  cannot be found. Try setting the avalon.buildsystem property in
  project.properties to the correct location.
  </fail>
      </target>
  
  
      <target name="delegate">
          <available
                  file="../maven-common-gump-build.xml"
                  property="avalon.buildsystem.available"/>
          <antcall target="need-for-common-build"/>
  
          <ant
                  inheritRefs="true"
                  target="avalon:${target}"
                  antfile="../maven-common-gump-build.xml"
                  inheritAll="true"/>
      </target>
  
      <target name="warning">
          <antcall target="delegate">
              <param name="target" value="warning"/>
          </antcall>
      </target>
  
      <target name="jar">
          <antcall target="delegate">
              <param name="target" value="jar"/>
          </antcall>
      </target>
  
      <target name="javadocs">
          <antcall target="delegate">
              <param name="target" value="javadocs"/>
          </antcall>
      </target>
  
      <target name="dist">
          <antcall target="delegate">
              <param name="target" value="dist"/>
          </antcall>
      </target>
  
  </project>
  
  
  
  1.12      +58 -411   avalon-excalibur/lifecycle/build.xml
  
  
  
  
  1.1                  avalon-excalibur/monitor/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  <project default="warning" name="Gump Build Support - DO NOT HAND-EDIT!!!" 
basedir=".">
  
      <property file="${basedir}/project.properties/>
      <property file="${basedir}/../project.properties"/>
  
      <target name="need-for-common-build" unless="avalon.buildsystem.available">
  <fail>
  ===================================================================
  BUILD SYSTEM FAILURE!
  ===================================================================
  
  a required file, ../maven-common-gump-build.xml,
  cannot be found. Try setting the avalon.buildsystem property in
  project.properties to the correct location.
  </fail>
      </target>
  
  
      <target name="delegate">
          <available
                  file="../maven-common-gump-build.xml"
                  property="avalon.buildsystem.available"/>
          <antcall target="need-for-common-build"/>
  
          <ant
                  inheritRefs="true"
                  target="avalon:${target}"
                  antfile="../maven-common-gump-build.xml"
                  inheritAll="true"/>
      </target>
  
      <target name="warning">
          <antcall target="delegate">
              <param name="target" value="warning"/>
          </antcall>
      </target>
  
      <target name="jar">
          <antcall target="delegate">
              <param name="target" value="jar"/>
          </antcall>
      </target>
  
      <target name="javadocs">
          <antcall target="delegate">
              <param name="target" value="javadocs"/>
          </antcall>
      </target>
  
      <target name="dist">
          <antcall target="delegate">
              <param name="target" value="dist"/>
          </antcall>
      </target>
  
  </project>
  
  
  
  1.1                  avalon-excalibur/pool/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  <project default="warning" name="Gump Build Support - DO NOT HAND-EDIT!!!" 
basedir=".">
  
      <property file="${basedir}/project.properties/>
      <property file="${basedir}/../project.properties"/>
  
      <target name="need-for-common-build" unless="avalon.buildsystem.available">
  <fail>
  ===================================================================
  BUILD SYSTEM FAILURE!
  ===================================================================
  
  a required file, ../maven-common-gump-build.xml,
  cannot be found. Try setting the avalon.buildsystem property in
  project.properties to the correct location.
  </fail>
      </target>
  
  
      <target name="delegate">
          <available
                  file="../maven-common-gump-build.xml"
                  property="avalon.buildsystem.available"/>
          <antcall target="need-for-common-build"/>
  
          <ant
                  inheritRefs="true"
                  target="avalon:${target}"
                  antfile="../maven-common-gump-build.xml"
                  inheritAll="true"/>
      </target>
  
      <target name="warning">
          <antcall target="delegate">
              <param name="target" value="warning"/>
          </antcall>
      </target>
  
      <target name="jar">
          <antcall target="delegate">
              <param name="target" value="jar"/>
          </antcall>
      </target>
  
      <target name="javadocs">
          <antcall target="delegate">
              <param name="target" value="javadocs"/>
          </antcall>
      </target>
  
      <target name="dist">
          <antcall target="delegate">
              <param name="target" value="dist"/>
          </antcall>
      </target>
  
  </project>
  
  
  
  1.1                  avalon-excalibur/sourceresolve/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  <project default="warning" name="Gump Build Support - DO NOT HAND-EDIT!!!" 
basedir=".">
  
      <property file="${basedir}/project.properties/>
      <property file="${basedir}/../project.properties"/>
  
      <target name="need-for-common-build" unless="avalon.buildsystem.available">
  <fail>
  ===================================================================
  BUILD SYSTEM FAILURE!
  ===================================================================
  
  a required file, ../maven-common-gump-build.xml,
  cannot be found. Try setting the avalon.buildsystem property in
  project.properties to the correct location.
  </fail>
      </target>
  
  
      <target name="delegate">
          <available
                  file="../maven-common-gump-build.xml"
                  property="avalon.buildsystem.available"/>
          <antcall target="need-for-common-build"/>
  
          <ant
                  inheritRefs="true"
                  target="avalon:${target}"
                  antfile="../maven-common-gump-build.xml"
                  inheritAll="true"/>
      </target>
  
      <target name="warning">
          <antcall target="delegate">
              <param name="target" value="warning"/>
          </antcall>
      </target>
  
      <target name="jar">
          <antcall target="delegate">
              <param name="target" value="jar"/>
          </antcall>
      </target>
  
      <target name="javadocs">
          <antcall target="delegate">
              <param name="target" value="javadocs"/>
          </antcall>
      </target>
  
      <target name="dist">
          <antcall target="delegate">
              <param name="target" value="dist"/>
          </antcall>
      </target>
  
  </project>
  
  
  
  1.1                  avalon-excalibur/store/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  <project default="warning" name="Gump Build Support - DO NOT HAND-EDIT!!!" 
basedir=".">
  
      <property file="${basedir}/project.properties/>
      <property file="${basedir}/../project.properties"/>
  
      <target name="need-for-common-build" unless="avalon.buildsystem.available">
  <fail>
  ===================================================================
  BUILD SYSTEM FAILURE!
  ===================================================================
  
  a required file, ../maven-common-gump-build.xml,
  cannot be found. Try setting the avalon.buildsystem property in
  project.properties to the correct location.
  </fail>
      </target>
  
  
      <target name="delegate">
          <available
                  file="../maven-common-gump-build.xml"
                  property="avalon.buildsystem.available"/>
          <antcall target="need-for-common-build"/>
  
          <ant
                  inheritRefs="true"
                  target="avalon:${target}"
                  antfile="../maven-common-gump-build.xml"
                  inheritAll="true"/>
      </target>
  
      <target name="warning">
          <antcall target="delegate">
              <param name="target" value="warning"/>
          </antcall>
      </target>
  
      <target name="jar">
          <antcall target="delegate">
              <param name="target" value="jar"/>
          </antcall>
      </target>
  
      <target name="javadocs">
          <antcall target="delegate">
              <param name="target" value="javadocs"/>
          </antcall>
      </target>
  
      <target name="dist">
          <antcall target="delegate">
              <param name="target" value="dist"/>
          </antcall>
      </target>
  
  </project>
  
  
  
  1.1                  avalon-excalibur/thread/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  <project default="warning" name="Gump Build Support - DO NOT HAND-EDIT!!!" 
basedir=".">
  
      <property file="${basedir}/project.properties/>
      <property file="${basedir}/../project.properties"/>
  
      <target name="need-for-common-build" unless="avalon.buildsystem.available">
  <fail>
  ===================================================================
  BUILD SYSTEM FAILURE!
  ===================================================================
  
  a required file, ../maven-common-gump-build.xml,
  cannot be found. Try setting the avalon.buildsystem property in
  project.properties to the correct location.
  </fail>
      </target>
  
  
      <target name="delegate">
          <available
                  file="../maven-common-gump-build.xml"
                  property="avalon.buildsystem.available"/>
          <antcall target="need-for-common-build"/>
  
          <ant
                  inheritRefs="true"
                  target="avalon:${target}"
                  antfile="../maven-common-gump-build.xml"
                  inheritAll="true"/>
      </target>
  
      <target name="warning">
          <antcall target="delegate">
              <param name="target" value="warning"/>
          </antcall>
      </target>
  
      <target name="jar">
          <antcall target="delegate">
              <param name="target" value="jar"/>
          </antcall>
      </target>
  
      <target name="javadocs">
          <antcall target="delegate">
              <param name="target" value="javadocs"/>
          </antcall>
      </target>
  
      <target name="dist">
          <antcall target="delegate">
              <param name="target" value="dist"/>
          </antcall>
      </target>
  
  </project>
  
  
  
  1.1                  avalon-excalibur/xmlutil/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  <project default="warning" name="Gump Build Support - DO NOT HAND-EDIT!!!" 
basedir=".">
  
      <property file="${basedir}/project.properties/>
      <property file="${basedir}/../project.properties"/>
  
      <target name="need-for-common-build" unless="avalon.buildsystem.available">
  <fail>
  ===================================================================
  BUILD SYSTEM FAILURE!
  ===================================================================
  
  a required file, ../maven-common-gump-build.xml,
  cannot be found. Try setting the avalon.buildsystem property in
  project.properties to the correct location.
  </fail>
      </target>
  
  
      <target name="delegate">
          <available
                  file="../maven-common-gump-build.xml"
                  property="avalon.buildsystem.available"/>
          <antcall target="need-for-common-build"/>
  
          <ant
                  inheritRefs="true"
                  target="avalon:${target}"
                  antfile="../maven-common-gump-build.xml"
                  inheritAll="true"/>
      </target>
  
      <target name="warning">
          <antcall target="delegate">
              <param name="target" value="warning"/>
          </antcall>
      </target>
  
      <target name="jar">
          <antcall target="delegate">
              <param name="target" value="jar"/>
          </antcall>
      </target>
  
      <target name="javadocs">
          <antcall target="delegate">
              <param name="target" value="javadocs"/>
          </antcall>
      </target>
  
      <target name="dist">
          <antcall target="delegate">
              <param name="target" value="dist"/>
          </antcall>
      </target>
  
  </project>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to