You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gump.apache.org by le...@apache.org on 2005/05/06 09:26:00 UTC

svn commit: r168553 - in /gump/branches/Gump3/fixture: metadata/profile.xml metadata/projects/gump.apache.org-fixture-svn/gump-fixture-svn-project-ant-based-1.xml svnprojects/gump-fixture-svn-project-ant-based-1/ant.xml

Author: leosimons
Date: Fri May  6 00:25:59 2005
New Revision: 168553

URL: http://svn.apache.org/viewcvs?rev=168553&view=rev
Log:
Ant fixture

Added:
    gump/branches/Gump3/fixture/svnprojects/gump-fixture-svn-project-ant-based-1/ant.xml
Modified:
    gump/branches/Gump3/fixture/metadata/profile.xml
    gump/branches/Gump3/fixture/metadata/projects/gump.apache.org-fixture-svn/gump-fixture-svn-project-ant-based-1.xml

Modified: gump/branches/Gump3/fixture/metadata/profile.xml
URL: http://svn.apache.org/viewcvs/gump/branches/Gump3/fixture/metadata/profile.xml?rev=168553&r1=168552&r2=168553&view=diff
==============================================================================
--- gump/branches/Gump3/fixture/metadata/profile.xml (original)
+++ gump/branches/Gump3/fixture/metadata/profile.xml Fri May  6 00:25:59 2005
@@ -27,15 +27,18 @@
         </module>
     </modules>
     <projects>
+        <!-- please keep this list in "dependency order" for now -->
         <project href="projects/gump.apache.org-fixture-svn/gump-fixture-svn-project-1.xml"/>
         <project href="projects/gump.apache.org-fixture-svn/gump-fixture-svn-project-2.xml"/>
         <project href="http://svn.apache.org/repos/asf/gump/branches/Gump3/fixture/metadata/projects/gump.apache.org-fixture-svn/gump-fixture-svn-project-3.xml"/>
 
+        <project href="projects/gump.apache.org-fixture-svn/gump-fixture-svn-project-dir-management-1.xml"/>
+        <project href="projects/gump.apache.org-fixture-svn/gump-fixture-svn-project-ant-based-1.xml"/>
+
+        <!-- failure tests -->
         <project href="projects/gump.apache.org-fixture-svn/gump-fixture-svn-project-cyclic-1.xml"/>
         <project href="projects/gump.apache.org-fixture-svn/gump-fixture-svn-project-cyclic-2.xml"/>
         <project href="projects/gump.apache.org-fixture-svn/gump-fixture-svn-project-cyclic-3.xml"/>
-        <project href="projects/gump.apache.org-fixture-svn/gump-fixture-svn-project-dir-management-1.xml"/>
-
         <project href="projects/gump.apache.org-fixture-svn/gump-fixture-svn-project-does-not-exist.xml"/>
     </projects>
 </profile>

Modified: gump/branches/Gump3/fixture/metadata/projects/gump.apache.org-fixture-svn/gump-fixture-svn-project-ant-based-1.xml
URL: http://svn.apache.org/viewcvs/gump/branches/Gump3/fixture/metadata/projects/gump.apache.org-fixture-svn/gump-fixture-svn-project-ant-based-1.xml?rev=168553&r1=168552&r2=168553&view=diff
==============================================================================
--- gump/branches/Gump3/fixture/metadata/projects/gump.apache.org-fixture-svn/gump-fixture-svn-project-ant-based-1.xml (original)
+++ gump/branches/Gump3/fixture/metadata/projects/gump.apache.org-fixture-svn/gump-fixture-svn-project-ant-based-1.xml Fri May  6 00:25:59 2005
@@ -0,0 +1,26 @@
+<?xml version="1.0"?>
+<!--
+Copyright 2005 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 name="gump-fixture-svn-project-ant-based-1"
+        path="gump-fixture-svn-project-ant-based-1">
+    <module name="gump-fixture-svn"/>
+
+    <license name="LICENSE.txt"/>
+    
+    <ant target="gump" buildfile="ant.xml"/>
+
+    <depend project="gump-fixture-svn-project-3"/>
+    <depend project="gump-fixture-svn-project-dir-management-1"/>
+</project>

Added: gump/branches/Gump3/fixture/svnprojects/gump-fixture-svn-project-ant-based-1/ant.xml
URL: http://svn.apache.org/viewcvs/gump/branches/Gump3/fixture/svnprojects/gump-fixture-svn-project-ant-based-1/ant.xml?rev=168553&view=auto
==============================================================================
--- gump/branches/Gump3/fixture/svnprojects/gump-fixture-svn-project-ant-based-1/ant.xml (added)
+++ gump/branches/Gump3/fixture/svnprojects/gump-fixture-svn-project-ant-based-1/ant.xml Fri May  6 00:25:59 2005
@@ -0,0 +1,24 @@
+<?xml version="1.0"?>
+<!--
+Copyright 2005 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 name="gump-ant-based-1" default="not-used" basedir=".">
+  <target name="not-used">
+    <fail message="The 'not-used' target should not be executed!"/>
+  </target>
+  
+  <target name="gump">
+    <echo>Hi from inside ant!</echo>
+  </target>
+</project>