taylor 2004/02/23 13:03:49
Modified: . maven.xml
Log:
reactors now work off subproject directories, making unit testing a lot simpler when
working with relative config files
Revision Changes Path
1.18 +11 -18 jakarta-jetspeed-2/maven.xml
Index: maven.xml
===================================================================
RCS file: /home/cvs/jakarta-jetspeed-2/maven.xml,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- maven.xml 23 Feb 2004 13:19:41 -0000 1.17
+++ maven.xml 23 Feb 2004 21:03:49 -0000 1.18
@@ -36,63 +36,63 @@
description="Build all jars and war">
<!-- Build jars -->
<maven:reactor
- basedir="${basedir}"
+ basedir="${basedir}/portlet-api"
includes="portlet-api/project.xml"
goals="jar:install"
banner="Build and Install the Portlet API jar"
postProcessing="false"
ignoreFailures="false"/>
<maven:reactor
- basedir="${basedir}"
+ basedir="${basedir}/commons"
includes="commons/project.xml"
goals="jar:install"
banner="Build and Install the common jar"
postProcessing="false"
ignoreFailures="false"/>
<maven:reactor
- basedir="${basedir}"
+ basedir="${basedir}/components/cm"
includes="components/cm/project.xml"
goals="jar:install"
banner="Build and Install the Component Manager jar"
postProcessing="false"
ignoreFailures="false"/>
<maven:reactor
- basedir="${basedir}"
+ basedir="${basedir}/components/rdbms"
includes="components/rdbms/project.xml"
goals="jar:install"
banner="Build and Install the RDBMS jar"
postProcessing="false"
ignoreFailures="false"/>
<maven:reactor
- basedir="${basedir}"
+ basedir="${basedir}/components/persistence"
includes="components/persistence/project.xml"
goals="jar:install"
banner="Build and Install the Persistence jar"
postProcessing="false"
ignoreFailures="false"/>
<maven:reactor
- basedir="${basedir}"
+ basedir="${basedir}/components/registry"
includes="components/registry/project.xml"
goals="jar:install"
banner="Build and Install the Registry jar"
postProcessing="false"
ignoreFailures="false"/>
<maven:reactor
- basedir="${basedir}"
+ basedir="${basedir}/components/registry"
includes="components/jetspeed/project.xml"
goals="jar:install"
banner="Build and Install the Jetspeed Components jar"
postProcessing="false"
ignoreFailures="false"/>
<maven:reactor
- basedir="${basedir}"
+ basedir="${basedir}/cps"
includes="cps/project.xml"
goals="jar:install"
banner="Build and Install the portlet commons services jar"
postProcessing="false"
ignoreFailures="false"/>
<maven:reactor
- basedir="${basedir}"
+ basedir="${basedir}/plugin"
includes="plugin/project.xml"
goals="jar:install"
banner="Build and Install the Plugin jar"
@@ -100,13 +100,6 @@
ignoreFailures="false"/>
<maven:reactor
basedir="${basedir}"
- includes="container/project.xml"
- goals="jar:install"
- banner="Build and Install the container jar"
- postProcessing="false"
- ignoreFailures="false"/>
- <maven:reactor
- basedir="${basedir}"
includes="services/registry/project.xml"
goals="db.recreate,db.test.recreate,jar:install"
banner="Build and Install the services - registry jar"
@@ -131,7 +124,7 @@
<maven:reactor
- basedir="${basedir}"
+ basedir="${basedir}/applications/demo"
includes="applications/demo/project.xml"
excludes="applications/project.xml"
goals="war:install"
@@ -140,7 +133,7 @@
ignoreFailures="false"/>
<maven:reactor
- basedir="${basedir}"
+ basedir="${basedir}/applications/pam"
includes="applications/pam/project.xml"
excludes="applications/project.xml"
goals="war:install"
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]