You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by mc...@apache.org on 2004/03/19 11:31:27 UTC

cvs commit: avalon-components/cornerstone/store/api build.xml project.properties

mcconnell    2004/03/19 02:31:27

  Modified:    cornerstone/connection/impl project.properties
               cornerstone/datasources/impl project.properties
               cornerstone/scheduler/impl project.properties
               cornerstone/sockets/impl project.properties
               cornerstone/store/impl project.properties
               cornerstone/threads/api project.properties
               cornerstone/threads/impl project.properties
               cornerstone/threads/tutorial project.properties
  Added:       cornerstone/connection/impl build.xml
               cornerstone/datasources/impl build.xml
               cornerstone/scheduler/impl build.xml
               cornerstone/sockets/impl build.xml
               cornerstone/store/impl build.xml
               cornerstone/threads/api build.xml
               cornerstone/threads/impl build.xml
               cornerstone/threads/tutorial build.xml
               cornerstone/connection/api project.properties
               cornerstone/datasources/api build.xml project.properties
               cornerstone/scheduler/api build.xml project.properties
               cornerstone/sockets/api build.xml project.properties
               cornerstone/store/api build.xml project.properties
  Log:
  Addition of build.xml for gump.
  
  Revision  Changes    Path
  1.2       +2 -0      avalon-components/cornerstone/connection/impl/project.properties
  
  Index: project.properties
  ===================================================================
  RCS file: /home/cvs/avalon-components/cornerstone/connection/impl/project.properties,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- project.properties	16 Mar 2004 14:17:55 -0000	1.1
  +++ project.properties	19 Mar 2004 10:31:26 -0000	1.2
  @@ -4,3 +4,5 @@
   # ahead of phoneix legacy content
   #
   avalon.meta.type.postfix=xtype
  +
  +project.name = cornerstone-connection-impl
  
  
  
  1.1                  avalon-components/cornerstone/connection/impl/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <!-- 
   Copyright 2004 The Apache Software Foundation
   Licensed  under the  Apache License,  Version 2.0  (the "License");
   you may not use  this file  except in  compliance with the License.
   You may obtain a copy of the License at 
   
     http://www.apache.org/licenses/LICENSE-2.0
   
   Unless required by applicable law or agreed to in writing, software
   distributed  under the  License is distributed on an "AS IS" BASIS,
   WITHOUT  WARRANTIES OR CONDITIONS  OF ANY KIND, either  express  or
   implied.
    
   See the License for the specific language governing permissions and
   limitations under the License.
  -->
  <project default="warning" name="Gump Build Support - DO NOT HAND-EDIT!!!" basedir=".">
  
      <property file="${basedir}/project.properties"/>
      <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.2       +2 -0      avalon-components/cornerstone/datasources/impl/project.properties
  
  Index: project.properties
  ===================================================================
  RCS file: /home/cvs/avalon-components/cornerstone/datasources/impl/project.properties,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- project.properties	16 Mar 2004 13:37:38 -0000	1.1
  +++ project.properties	19 Mar 2004 10:31:26 -0000	1.2
  @@ -4,3 +4,5 @@
   # ahead of phoneix legacy content
   #
   avalon.meta.type.postfix=xtype
  +
  +project.name = cornerstone-datasources-api
  
  
  
  1.1                  avalon-components/cornerstone/datasources/impl/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <!-- 
   Copyright 2004 The Apache Software Foundation
   Licensed  under the  Apache License,  Version 2.0  (the "License");
   you may not use  this file  except in  compliance with the License.
   You may obtain a copy of the License at 
   
     http://www.apache.org/licenses/LICENSE-2.0
   
   Unless required by applicable law or agreed to in writing, software
   distributed  under the  License is distributed on an "AS IS" BASIS,
   WITHOUT  WARRANTIES OR CONDITIONS  OF ANY KIND, either  express  or
   implied.
    
   See the License for the specific language governing permissions and
   limitations under the License.
  -->
  <project default="warning" name="Gump Build Support - DO NOT HAND-EDIT!!!" basedir=".">
  
      <property file="${basedir}/project.properties"/>
      <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.2       +2 -0      avalon-components/cornerstone/scheduler/impl/project.properties
  
  Index: project.properties
  ===================================================================
  RCS file: /home/cvs/avalon-components/cornerstone/scheduler/impl/project.properties,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- project.properties	16 Mar 2004 13:29:58 -0000	1.1
  +++ project.properties	19 Mar 2004 10:31:26 -0000	1.2
  @@ -4,3 +4,5 @@
   # ahead of phoneix legacy content
   #
   avalon.meta.type.postfix=xtype
  +
  +project.name = cornerstone-scheduler-impl
  
  
  
  1.1                  avalon-components/cornerstone/scheduler/impl/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <!-- 
   Copyright 2004 The Apache Software Foundation
   Licensed  under the  Apache License,  Version 2.0  (the "License");
   you may not use  this file  except in  compliance with the License.
   You may obtain a copy of the License at 
   
     http://www.apache.org/licenses/LICENSE-2.0
   
   Unless required by applicable law or agreed to in writing, software
   distributed  under the  License is distributed on an "AS IS" BASIS,
   WITHOUT  WARRANTIES OR CONDITIONS  OF ANY KIND, either  express  or
   implied.
    
   See the License for the specific language governing permissions and
   limitations under the License.
  -->
  <project default="warning" name="Gump Build Support - DO NOT HAND-EDIT!!!" basedir=".">
  
      <property file="${basedir}/project.properties"/>
      <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.2       +2 -0      avalon-components/cornerstone/sockets/impl/project.properties
  
  Index: project.properties
  ===================================================================
  RCS file: /home/cvs/avalon-components/cornerstone/sockets/impl/project.properties,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- project.properties	16 Mar 2004 13:30:51 -0000	1.1
  +++ project.properties	19 Mar 2004 10:31:27 -0000	1.2
  @@ -4,3 +4,5 @@
   # ahead of phoneix legacy content
   #
   avalon.meta.type.postfix=xtype
  +
  +project.name = cornerstone-sockets-impl
  
  
  
  1.1                  avalon-components/cornerstone/sockets/impl/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <!-- 
   Copyright 2004 The Apache Software Foundation
   Licensed  under the  Apache License,  Version 2.0  (the "License");
   you may not use  this file  except in  compliance with the License.
   You may obtain a copy of the License at 
   
     http://www.apache.org/licenses/LICENSE-2.0
   
   Unless required by applicable law or agreed to in writing, software
   distributed  under the  License is distributed on an "AS IS" BASIS,
   WITHOUT  WARRANTIES OR CONDITIONS  OF ANY KIND, either  express  or
   implied.
    
   See the License for the specific language governing permissions and
   limitations under the License.
  -->
  <project default="warning" name="Gump Build Support - DO NOT HAND-EDIT!!!" basedir=".">
  
      <property file="${basedir}/project.properties"/>
      <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.2       +2 -0      avalon-components/cornerstone/store/impl/project.properties
  
  Index: project.properties
  ===================================================================
  RCS file: /home/cvs/avalon-components/cornerstone/store/impl/project.properties,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- project.properties	15 Mar 2004 17:10:09 -0000	1.1
  +++ project.properties	19 Mar 2004 10:31:27 -0000	1.2
  @@ -4,3 +4,5 @@
   # ahead of phoneix legacy content
   #
   avalon.meta.type.postfix=xtype
  +
  +project.name = cornerstone-store-impl
  
  
  
  1.1                  avalon-components/cornerstone/store/impl/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <!-- 
   Copyright 2004 The Apache Software Foundation
   Licensed  under the  Apache License,  Version 2.0  (the "License");
   you may not use  this file  except in  compliance with the License.
   You may obtain a copy of the License at 
   
     http://www.apache.org/licenses/LICENSE-2.0
   
   Unless required by applicable law or agreed to in writing, software
   distributed  under the  License is distributed on an "AS IS" BASIS,
   WITHOUT  WARRANTIES OR CONDITIONS  OF ANY KIND, either  express  or
   implied.
    
   See the License for the specific language governing permissions and
   limitations under the License.
  -->
  <project default="warning" name="Gump Build Support - DO NOT HAND-EDIT!!!" basedir=".">
  
      <property file="${basedir}/project.properties"/>
      <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.2       +2 -0      avalon-components/cornerstone/threads/api/project.properties
  
  Index: project.properties
  ===================================================================
  RCS file: /home/cvs/avalon-components/cornerstone/threads/api/project.properties,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- project.properties	15 Mar 2004 13:06:45 -0000	1.1
  +++ project.properties	19 Mar 2004 10:31:27 -0000	1.2
  @@ -14,3 +14,5 @@
   excalibur.event.link = http://avalon.apache.org/excalibur/event/api/
   
   maven.javadoc.links = ${sun.j2se.link},${avalon.framework.link},${excalibur.thread.link},${excalibur.event.link}
  +
  +project.name = cornerstone-threads-api
  
  
  
  1.1                  avalon-components/cornerstone/threads/api/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <!-- 
   Copyright 2004 The Apache Software Foundation
   Licensed  under the  Apache License,  Version 2.0  (the "License");
   you may not use  this file  except in  compliance with the License.
   You may obtain a copy of the License at 
   
     http://www.apache.org/licenses/LICENSE-2.0
   
   Unless required by applicable law or agreed to in writing, software
   distributed  under the  License is distributed on an "AS IS" BASIS,
   WITHOUT  WARRANTIES OR CONDITIONS  OF ANY KIND, either  express  or
   implied.
    
   See the License for the specific language governing permissions and
   limitations under the License.
  -->
  <project default="warning" name="Gump Build Support - DO NOT HAND-EDIT!!!" basedir=".">
  
      <property file="${basedir}/project.properties"/>
      <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.2       +2 -0      avalon-components/cornerstone/threads/impl/project.properties
  
  Index: project.properties
  ===================================================================
  RCS file: /home/cvs/avalon-components/cornerstone/threads/impl/project.properties,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- project.properties	16 Mar 2004 13:31:32 -0000	1.1
  +++ project.properties	19 Mar 2004 10:31:27 -0000	1.2
  @@ -4,3 +4,5 @@
   # ahead of phoneix legacy content
   #
   avalon.meta.type.postfix=xtype
  +
  +project.name = cornerstone-threads-impl
  
  
  
  1.1                  avalon-components/cornerstone/threads/impl/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <!-- 
   Copyright 2004 The Apache Software Foundation
   Licensed  under the  Apache License,  Version 2.0  (the "License");
   you may not use  this file  except in  compliance with the License.
   You may obtain a copy of the License at 
   
     http://www.apache.org/licenses/LICENSE-2.0
   
   Unless required by applicable law or agreed to in writing, software
   distributed  under the  License is distributed on an "AS IS" BASIS,
   WITHOUT  WARRANTIES OR CONDITIONS  OF ANY KIND, either  express  or
   implied.
    
   See the License for the specific language governing permissions and
   limitations under the License.
  -->
  <project default="warning" name="Gump Build Support - DO NOT HAND-EDIT!!!" basedir=".">
  
      <property file="${basedir}/project.properties"/>
      <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.2       +2 -0      avalon-components/cornerstone/threads/tutorial/project.properties
  
  Index: project.properties
  ===================================================================
  RCS file: /home/cvs/avalon-components/cornerstone/threads/tutorial/project.properties,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- project.properties	15 Mar 2004 13:06:46 -0000	1.1
  +++ project.properties	19 Mar 2004 10:31:27 -0000	1.2
  @@ -0,0 +1,2 @@
  +
  +project.name = cornerstone-threads-tutorial
  
  
  
  1.1                  avalon-components/cornerstone/threads/tutorial/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <!-- 
   Copyright 2004 The Apache Software Foundation
   Licensed  under the  Apache License,  Version 2.0  (the "License");
   you may not use  this file  except in  compliance with the License.
   You may obtain a copy of the License at 
   
     http://www.apache.org/licenses/LICENSE-2.0
   
   Unless required by applicable law or agreed to in writing, software
   distributed  under the  License is distributed on an "AS IS" BASIS,
   WITHOUT  WARRANTIES OR CONDITIONS  OF ANY KIND, either  express  or
   implied.
    
   See the License for the specific language governing permissions and
   limitations under the License.
  -->
  <project default="warning" name="Gump Build Support - DO NOT HAND-EDIT!!!" basedir=".">
  
      <property file="${basedir}/project.properties"/>
      <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-components/cornerstone/connection/api/project.properties
  
  Index: project.properties
  ===================================================================
  
  project.name = cornerstone-connection-api
  
  
  
  1.1                  avalon-components/cornerstone/datasources/api/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <!-- 
   Copyright 2004 The Apache Software Foundation
   Licensed  under the  Apache License,  Version 2.0  (the "License");
   you may not use  this file  except in  compliance with the License.
   You may obtain a copy of the License at 
   
     http://www.apache.org/licenses/LICENSE-2.0
   
   Unless required by applicable law or agreed to in writing, software
   distributed  under the  License is distributed on an "AS IS" BASIS,
   WITHOUT  WARRANTIES OR CONDITIONS  OF ANY KIND, either  express  or
   implied.
    
   See the License for the specific language governing permissions and
   limitations under the License.
  -->
  <project default="warning" name="Gump Build Support - DO NOT HAND-EDIT!!!" basedir=".">
  
      <property file="${basedir}/project.properties"/>
      <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-components/cornerstone/datasources/api/project.properties
  
  Index: project.properties
  ===================================================================
  
  project.name = cornerstone-datasources-api
  
  
  
  1.1                  avalon-components/cornerstone/scheduler/api/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <!-- 
   Copyright 2004 The Apache Software Foundation
   Licensed  under the  Apache License,  Version 2.0  (the "License");
   you may not use  this file  except in  compliance with the License.
   You may obtain a copy of the License at 
   
     http://www.apache.org/licenses/LICENSE-2.0
   
   Unless required by applicable law or agreed to in writing, software
   distributed  under the  License is distributed on an "AS IS" BASIS,
   WITHOUT  WARRANTIES OR CONDITIONS  OF ANY KIND, either  express  or
   implied.
    
   See the License for the specific language governing permissions and
   limitations under the License.
  -->
  <project default="warning" name="Gump Build Support - DO NOT HAND-EDIT!!!" basedir=".">
  
      <property file="${basedir}/project.properties"/>
      <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-components/cornerstone/scheduler/api/project.properties
  
  Index: project.properties
  ===================================================================
  
  project.name = cornerstone-scheduler-api
  
  
  
  1.1                  avalon-components/cornerstone/sockets/api/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <!-- 
   Copyright 2004 The Apache Software Foundation
   Licensed  under the  Apache License,  Version 2.0  (the "License");
   you may not use  this file  except in  compliance with the License.
   You may obtain a copy of the License at 
   
     http://www.apache.org/licenses/LICENSE-2.0
   
   Unless required by applicable law or agreed to in writing, software
   distributed  under the  License is distributed on an "AS IS" BASIS,
   WITHOUT  WARRANTIES OR CONDITIONS  OF ANY KIND, either  express  or
   implied.
    
   See the License for the specific language governing permissions and
   limitations under the License.
  -->
  <project default="warning" name="Gump Build Support - DO NOT HAND-EDIT!!!" basedir=".">
  
      <property file="${basedir}/project.properties"/>
      <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-components/cornerstone/sockets/api/project.properties
  
  Index: project.properties
  ===================================================================
  
  project.name = cornerstone-sockets-api
  
  
  
  1.1                  avalon-components/cornerstone/store/api/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <!-- 
   Copyright 2004 The Apache Software Foundation
   Licensed  under the  Apache License,  Version 2.0  (the "License");
   you may not use  this file  except in  compliance with the License.
   You may obtain a copy of the License at 
   
     http://www.apache.org/licenses/LICENSE-2.0
   
   Unless required by applicable law or agreed to in writing, software
   distributed  under the  License is distributed on an "AS IS" BASIS,
   WITHOUT  WARRANTIES OR CONDITIONS  OF ANY KIND, either  express  or
   implied.
    
   See the License for the specific language governing permissions and
   limitations under the License.
  -->
  <project default="warning" name="Gump Build Support - DO NOT HAND-EDIT!!!" basedir=".">
  
      <property file="${basedir}/project.properties"/>
      <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-components/cornerstone/store/api/project.properties
  
  Index: project.properties
  ===================================================================
  
  project.name = cornerstone-store-api
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: cvs-unsubscribe@avalon.apache.org
For additional commands, e-mail: cvs-help@avalon.apache.org