[jboss-cvs] JBoss Messaging SVN: r6501 - trunk/examples.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Apr 20 12:56:55 EDT 2009


Author: jmesnil
Date: 2009-04-20 12:56:55 -0400 (Mon, 20 Apr 2009)
New Revision: 6501

Added:
   trunk/examples/build.xml
Log:
added clean target to clean *all* examples

Added: trunk/examples/build.xml
===================================================================
--- trunk/examples/build.xml	                        (rev 0)
+++ trunk/examples/build.xml	2009-04-20 16:56:55 UTC (rev 6501)
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE project [
+      <!ENTITY libraries SYSTEM "../../../thirdparty/libraries.ent">
+      ]>
+
+<!-- =========================================================================================== -->
+<!--                                                                                             -->
+<!-- JBoss, Home of Professional Open Source                                                     -->
+<!-- Copyright 2005, JBoss Inc., and individual contributors as indicated                        -->
+<!-- by the @authors tag. See the copyright.txt in the distribution for a                        -->
+<!-- full listing of individual contributors.                                                    -->
+<!--                                                                                             -->
+<!-- This is free software; you can redistribute it and/or modify it                             -->
+<!-- under the terms of the GNU Lesser General Public License as                                 -->
+<!-- published by the Free Software Foundation; either version 2.1 of                            -->
+<!-- the License, or (at your option) any later version.                                         -->
+<!--                                                                                             -->
+<!-- This software is distributed in the hope that it will be useful,                            -->
+<!-- but WITHOUT ANY WARRANTY; without even the implied warranty of                              -->
+<!-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU                            -->
+<!-- Lesser General Public License for more details.                                             -->
+<!--                                                                                             -->
+<!-- You should have received a copy of the GNU Lesser General Public                            -->
+<!-- License along with this software; if not, write to the Free                                 -->
+<!-- Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA                          -->
+<!-- 02110-1301 USA, or see the FSF site: http://www.fsf.org.                                    -->
+<!--                                                                                             -->
+<!-- =========================================================================================== -->
+
+
+<project default="clean" name="examples" basedir=".">
+    <target name="clean">
+        <subant target="clean" failonerror="true">
+           <fileset dir="." excludes="build.xml" includes="**/build.xml" />
+        </subant>       
+    </target>
+</project>




More information about the jboss-cvs-commits mailing list