You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by ni...@apache.org on 2004/03/17 12:38:01 UTC

cvs commit: avalon/util/plugin build.xml project.properties

niclas      2004/03/17 03:38:01

  Modified:    util/extension/impl project.properties
  Added:       util/criteria build.xml project.properties
               util/defaults build.xml project.properties
               util/env build.xml project.properties
               util/exception build.xml project.properties
               util/extension/api build.xml project.properties
               util/extension/impl build.xml
               util/i18n build.xml project.properties
               util/plugin build.xml project.properties
  Log:
  Stuff needed for Gump.
  
  Revision  Changes    Path
  1.1                  avalon/util/criteria/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  
  <project default="warning" name="Gump Build Support" 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}/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/util/criteria/project.properties
  
  Index: project.properties
  ===================================================================
  
  project.name=avalon-util-criteria
  
  avalon.buildsystem = ${basedir}/../../buildsystem
  
  
  
  1.1                  avalon/util/defaults/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  
  <project default="warning" name="Gump Build Support" 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}/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/util/defaults/project.properties
  
  Index: project.properties
  ===================================================================
  
  project.name=avalon-util-defaults
  
  avalon.buildsystem = ${basedir}/../../buildsystem
  
  
  
  1.1                  avalon/util/env/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  
  <project default="warning" name="Gump Build Support" 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}/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/util/env/project.properties
  
  Index: project.properties
  ===================================================================
  
  project.name=avalon-util-env
  
  avalon.buildsystem = ${basedir}/../../buildsystem
  
  
  
  1.1                  avalon/util/exception/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  
  <project default="warning" name="Gump Build Support" 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}/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/util/exception/project.properties
  
  Index: project.properties
  ===================================================================
  
  project.name=avalon-util-exception
  
  avalon.buildsystem = ${basedir}/../../buildsystem
  
  
  
  1.1                  avalon/util/extension/api/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  
  <project default="warning" name="Gump Build Support" 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, ${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/util/extension/api/project.properties
  
  Index: project.properties
  ===================================================================
  
  project.name=avalon-util-extension-api
  
  avalon.buildsystem = ${basedir}/../../../buildsystem
  
  
  
  1.2       +4 -1      avalon/util/extension/impl/project.properties
  
  Index: project.properties
  ===================================================================
  RCS file: /home/cvs/avalon/util/extension/impl/project.properties,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- project.properties	4 Feb 2004 17:24:15 -0000	1.1
  +++ project.properties	17 Mar 2004 11:38:00 -0000	1.2
  @@ -1,2 +1,5 @@
  -
   maven.junit.fork = true
  +
  +project.name=avalon-util-extension-api
  +
  +avalon.buildsystem = ${basedir}/../../../buildsystem
  
  
  
  1.1                  avalon/util/extension/impl/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  
  <project default="warning" name="Gump Build Support" 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, ${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/util/i18n/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  
  <project default="warning" name="Gump Build Support" 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}/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/util/i18n/project.properties
  
  Index: project.properties
  ===================================================================
  
  project.name=avalon-util-i18n
  
  avalon.buildsystem = ${basedir}/../../buildsystem
  
  
  
  1.1                  avalon/util/plugin/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  
  <project default="warning" name="Gump Build Support" 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}/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/util/plugin/project.properties
  
  Index: project.properties
  ===================================================================
  
  project.name=avalon-util-plugin
  
  avalon.buildsystem = ${basedir}/../../buildsystem
  
  
  

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