jstrachan 2002/06/02 11:19:57
Modified: messenger build.xml project.xml
Removed: messenger PROPOSAL.html STATUS.html
Log:
Updated the build and project POM to the latest Maven CVS HEAD
Revision Changes Path
1.32 +12 -40 jakarta-commons-sandbox/messenger/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons-sandbox/messenger/build.xml,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- build.xml 29 May 2002 06:39:59 -0000 1.31
+++ build.xml 2 Jun 2002 18:19:57 -0000 1.32
@@ -2,7 +2,7 @@
<!--
"messenger" component of the Jakarta Commons Subproject
- $Id: build.xml,v 1.31 2002/05/29 06:39:59 jstrachan Exp $
+ $Id: build.xml,v 1.32 2002/06/02 18:19:57 jstrachan Exp $
-->
<!-- ========== Initialize Properties ===================================== -->
@@ -370,7 +370,7 @@
<!-- ========== Unit Test Targets ========================================= -->
- <target name="test.messenger" depends="compile.tests">
+ <target name="test.messenger" depends="compile.test">
<echo message="Running messenger tests ..."/>
<java classname="${test.runner}" fork="yes"
failonerror="${test.failonerror}">
@@ -389,7 +389,7 @@
<!-- ========== Example Web App =========================================== -->
- <target name="webapp" depends="jar"
+ <target name="webapp" depends="maven:jar"
description="Builds the sample web application">
<mkdir dir="${build.webapp}"/>
<mkdir dir="${build.webapp}/classes"/>
@@ -438,7 +438,7 @@
the ${j2eesdk}/conf/web.properties to point to the src/webapp/web directory
-->
- <target name="demo.j2eesdk.call" depends="compile.tests"
+ <target name="demo.j2eesdk.call" depends="compile.test"
description="Sends a message to a Messagelet engine and displays the result">
<echo message="Sending a message to the Messagelet engine using the J2EE SDK
JMS..."/>
<java classname="org.apache.commons.messenger.tool.Caller" fork="yes">
@@ -463,7 +463,7 @@
jms.classpath points to the required JARs & config files etc.
-->
- <target name="demo.jms.call.mdo" depends="compile.tests"
+ <target name="demo.jms.call.mdo" depends="compile.test"
description="Sends a message to a Messagelet engine for processing by a MDO and
displays the result">
<echo message="Sending a message to the Messagelet engine using the configured
JMS provider..."/>
<java classname="org.apache.commons.messenger.tool.Caller" fork="yes">
@@ -477,7 +477,7 @@
</java>
</target>
- <target name="demo.jms.call.servlet" depends="compile.tests"
+ <target name="demo.jms.call.servlet" depends="compile.test"
description="Sends a message to a Messagelet engine for processing by a Servlet
and displays the result">
<echo message="Sending a message to the Messagelet engine using the configured
JMS provider..."/>
<java classname="org.apache.commons.messenger.tool.Caller" fork="yes">
@@ -492,62 +492,34 @@
</target>
- <target name="demo.jms.call.messagelet" depends="compile.tests"
-
+ <target name="demo.jms.call.messagelet" depends="compile.test"
description="Sends a message to a Messagelet engine for processing by a
Messagelet and displays the result">
-
<echo message="Sending a message to the Messagelet engine using the configured
JMS provider..."/>
-
<java classname="org.apache.commons.messenger.tool.Caller" fork="yes">
-
<classpath refid="jms.classpath"/>
-
-
-
<arg value="queue"/>
-
<arg value="echo.messagelet"/>
-
<arg value="src/conf/sampleMessage.txt"/>
-
-
-
<sysproperty key="org.apache.commons.messenger" value="${messenger.xml}"/>
-
</java>
-
</target>
- <target name="demo.jms.call.bridge" depends="compile.tests"
-
+ <target name="demo.jms.call.bridge" depends="compile.test"
description="Sends a message to a Messagelet engine for processing by a Bridge
MDO">
-
<echo message="Sending a message to the Messagelet engine using the configured
JMS provider..."/>
-
<java classname="org.apache.commons.messenger.tool.Producer" fork="yes">
-
<classpath refid="jms.classpath"/>
-
-
-
<arg value="queue"/>
-
<arg value="foo.input"/>
-
<arg value="src/conf/sampleMessage.txt"/>
-
-
-
<sysproperty key="org.apache.commons.messenger" value="${messenger.xml}"/>
-
</java>
-
</target>
- <target name="demo.jms.call.jsp" depends="compile.tests"
+ <target name="demo.jms.call.jsp" depends="compile.test"
description="Sends a message to a Messagelet engine for processing by a JSP
page and displays the result">
<echo message="Sending a message to the Messagelet engine using the configured
JMS provider..."/>
<java classname="org.apache.commons.messenger.tool.Caller" fork="yes">
@@ -561,7 +533,7 @@
</java>
</target>
- <target name="demo.send" depends="compile.tests"
+ <target name="demo.send" depends="compile.test"
description="Sends a number of messages to a JMS destination using the jmsSend
task">
<taskdef
@@ -576,7 +548,7 @@
</target>
- <target name="demo.receive" depends="compile.tests"
+ <target name="demo.receive" depends="compile.test"
description="Receives a number of messages from a JMS destination">
<property name="test.subject" value="jms/Queue"/>
@@ -592,7 +564,7 @@
</java>
</target>
- <target name="demo.receive.bridge" depends="compile.tests"
+ <target name="demo.receive.bridge" depends="compile.test"
description="Receives a number of messages from the bridge on a JMS
destination">
<property name="test.subject" value="foo.output"/>
1.3 +26 -12 jakarta-commons-sandbox/messenger/project.xml
Index: project.xml
===================================================================
RCS file: /home/cvs/jakarta-commons-sandbox/messenger/project.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- project.xml 22 May 2002 14:57:35 -0000 1.2
+++ project.xml 2 Jun 2002 18:19:57 -0000 1.3
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project>
- <version>2</version>
+ <pomVersion>3</pomVersion>
<name>commons-messenger</name>
<id>commons-messenger</id>
<currentVersion>1.0-dev</currentVersion>
@@ -13,13 +13,22 @@
<package>org.apache.commons</package>
<shortDescription>Commons Messenger</shortDescription>
<gumpRepositoryId>jakarta</gumpRepositoryId>
- <description>Commons Messenger: simple XML scripting engine</description>
- <url>http://jakarta.apache.org/commons/sandbox/messenger.html</url>
+
+ <description>
+ Commons Messenger is a JMS framework for working with JMS in web applications
and web services
+ </description>
+
+ <url>http://jakarta.apache.org/commons/sandbox/messenger/</url>
<cvsWebUrl>http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/messenger/</cvsWebUrl>
<cvsModule>jakarta-commons-sandbox/messenger</cvsModule>
<issueTrackingUrl>http://nagoya.apache.org/</issueTrackingUrl>
<siteAddress>jakarta.apache.org</siteAddress>
<siteDirectory>/www/jakarta.apache.org/commons/sandbox/messenger/</siteDirectory>
+
<distributionDirectory>/www/jakarta.apache.org/builds/jakarta-commons-sandbox/messenger/</distributionDirectory>
+ <repository>
+
<connection>scm:cvs:pserver:[EMAIL PROTECTED]:/home/cvspublic:jakarta-commons-sandbox/messenger</connection>
+ <url>http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/messenger/</url>
+ </repository>
<mailingLists>
<mailingList>
@@ -111,20 +120,25 @@
</dependencies>
<build>
- <sourceDirectories>
- <sourceDirectory>src/java</sourceDirectory>
- </sourceDirectories>
+ <nagEmailAddress>[EMAIL PROTECTED]</nagEmailAddress>
+ <sourceDirectory>src/java</sourceDirectory>
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
- <aspectSourceDirectories></aspectSourceDirectories>
+ <integrationUnitTestSourceDirectory/>
+ <aspectSourceDirectory/>
+ <!-- Unit test classes -->
+
<unitTestPatterns>
- <unitTestPattern>include = **/*Test*.java</unitTestPattern>
+ <unitTestPattern>include = **/Test*.java</unitTestPattern>
</unitTestPatterns>
+ <!-- Integration unit test classes -->
+ <integrationUnitTestPatterns></integrationUnitTestPatterns>
+
+ <!-- J A R R E S O U R C E S -->
+ <!-- Resources that are packaged up inside the JAR file -->
+
<jarResources>
- <jarResource>include = **/*.properties</jarResource>
+ <jarResource>include = **/*.properties</jarResource>
</jarResources>
-
- <jars></jars>
- <nagEmailAddress>[EMAIL PROTECTED]</nagEmailAddress>
</build>
</project>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>