You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by vt...@apache.org on 2004/02/16 02:53:17 UTC

svn commit: rev 6676 - incubator/directory/janus/trunk

Author: vtence
Date: Sun Feb 15 17:53:17 2004
New Revision: 6676

Added:
   incubator/directory/janus/trunk/maven.xml
Log:
o Initial import

Added: incubator/directory/janus/trunk/maven.xml
==============================================================================
--- (empty file)
+++ incubator/directory/janus/trunk/maven.xml	Sun Feb 15 17:53:17 2004
@@ -0,0 +1,28 @@
+<project default="install-jars"
+    xmlns:maven="jelly:maven"
+    xmlns:deploy="deploy">
+
+    <goal name="download-deps">
+        <deploy:copy-deps todir="${basedir}/lib"/>
+    </goal>
+
+    <goal name="install-jars"
+        description="Installs the sub-projects jars to the local repo.">
+
+        <maven:reactor
+            basedir="${basedir}"
+            includes="*/*/project.xml"
+            goals="jar:install"
+            banner="Building sub-project:"
+            ignoreFailures="false"/>
+    </goal>
+
+    <goal name="clean-all" description="Deletes all target folders and log files">
+        <delete includeEmptyDirs="true">
+            <fileset dir="${basedir}">
+                <include name="**/target/**"/>
+                <include name="/velocity.log"/>
+            </fileset>
+        </delete>
+    </goal>
+</project>