JBoss JBPM SVN: r4484 - jbpm4/branches/email/modules/pvm/src/main/java/org/jbpm/pvm/internal/email/producer/impl.
by do-not-reply@jboss.org
Author: bradsdavis
Date: 2009-04-07 13:10:43 -0400 (Tue, 07 Apr 2009)
New Revision: 4484
Modified:
jbpm4/branches/email/modules/pvm/src/main/java/org/jbpm/pvm/internal/email/producer/impl/ScriptMailProducer.java
Log:
Scriptable email producer should script the body and subject.
Modified: jbpm4/branches/email/modules/pvm/src/main/java/org/jbpm/pvm/internal/email/producer/impl/ScriptMailProducer.java
===================================================================
--- jbpm4/branches/email/modules/pvm/src/main/java/org/jbpm/pvm/internal/email/producer/impl/ScriptMailProducer.java 2009-04-07 16:10:11 UTC (rev 4483)
+++ jbpm4/branches/email/modules/pvm/src/main/java/org/jbpm/pvm/internal/email/producer/impl/ScriptMailProducer.java 2009-04-07 17:10:43 UTC (rev 4484)
@@ -10,8 +10,6 @@
public class ScriptMailProducer extends SimpleMailProducer {
-
- protected String script;
protected String language;
@Override
@@ -21,15 +19,12 @@
ScriptManager scriptManager = Environment.getFromCurrent(ScriptManager.class);
//Here, you just need to populate the body of the message if it is a simple text email.
- this.body = (String)scriptManager.evaluateScript(script, exe, language);
+ this.body = (String)scriptManager.evaluateScript(this.body, exe, language);
+ this.subject = (String)scriptManager.evaluateScript(this.subject, exe, language);
return super.produce(exe, mailContext);
}
- public void setScript(String script) {
- this.script = script;
- }
-
public void setLanguage(String language) {
this.language = language;
}
17 years
JBoss JBPM SVN: r4483 - jbpm4/branches/jbpm-4.0.0.Beta1.
by do-not-reply@jboss.org
Author: heiko.braun(a)jboss.com
Date: 2009-04-07 12:10:11 -0400 (Tue, 07 Apr 2009)
New Revision: 4483
Modified:
jbpm4/branches/jbpm-4.0.0.Beta1/pom.xml
Log:
gpd version 4.0.0-Beta1
Modified: jbpm4/branches/jbpm-4.0.0.Beta1/pom.xml
===================================================================
--- jbpm4/branches/jbpm-4.0.0.Beta1/pom.xml 2009-04-07 16:09:57 UTC (rev 4482)
+++ jbpm4/branches/jbpm-4.0.0.Beta1/pom.xml 2009-04-07 16:10:11 UTC (rev 4483)
@@ -21,7 +21,7 @@
<artifactId>jbpm</artifactId>
<packaging>pom</packaging>
- <version>4.0.0.Beta1</version>
+ <version>4.0.0.Beta1 </version>
<organization>
<name>JBoss, a division of Red Hat</name>
@@ -176,7 +176,7 @@
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm-gpd</artifactId>
<type>zip</type>
- <version>${version}</version>
+ <version>4.0.0-Beta1</version>
</dependency>
<!-- External dependencies -->
17 years
JBoss JBPM SVN: r4482 - in jbpm4/branches/tbaeyens/modules: jpdl/src/main/java/org/jbpm/jpdl/internal/xml and 2 other directories.
by do-not-reply@jboss.org
Author: tom.baeyens(a)jboss.com
Date: 2009-04-07 12:09:57 -0400 (Tue, 07 Apr 2009)
New Revision: 4482
Modified:
jbpm4/branches/tbaeyens/modules/jpdl/src/main/java/org/jbpm/jpdl/internal/activity/EventListenerBinding.java
jbpm4/branches/tbaeyens/modules/jpdl/src/main/java/org/jbpm/jpdl/internal/xml/JpdlParser.java
jbpm4/branches/tbaeyens/modules/pvm/src/main/java/org/jbpm/pvm/internal/xml/Parser.java
jbpm4/branches/tbaeyens/modules/test-db/src/test/java/org/jbpm/test/eventlistener/EventListenerTest.java
Log:
event listener parsing
Modified: jbpm4/branches/tbaeyens/modules/jpdl/src/main/java/org/jbpm/jpdl/internal/activity/EventListenerBinding.java
===================================================================
--- jbpm4/branches/tbaeyens/modules/jpdl/src/main/java/org/jbpm/jpdl/internal/activity/EventListenerBinding.java 2009-04-07 15:42:35 UTC (rev 4481)
+++ jbpm4/branches/tbaeyens/modules/jpdl/src/main/java/org/jbpm/jpdl/internal/activity/EventListenerBinding.java 2009-04-07 16:09:57 UTC (rev 4482)
@@ -22,7 +22,9 @@
package org.jbpm.jpdl.internal.activity;
import org.jbpm.jpdl.internal.xml.JpdlParser;
+import org.jbpm.listener.EventListener;
import org.jbpm.pvm.internal.wire.Descriptor;
+import org.jbpm.pvm.internal.wire.WireContext;
import org.jbpm.pvm.internal.xml.Parse;
import org.jbpm.pvm.internal.xml.Parser;
import org.w3c.dom.Element;
@@ -39,7 +41,8 @@
public Object parse(Element element, Parse parse, Parser parser) {
Descriptor descriptor = JpdlParser.parseObjectDescriptor(element, parse);
- return null;
+ EventListener eventListener = (EventListener) WireContext.create(descriptor);
+ return eventListener;
}
}
Modified: jbpm4/branches/tbaeyens/modules/jpdl/src/main/java/org/jbpm/jpdl/internal/xml/JpdlParser.java
===================================================================
--- jbpm4/branches/tbaeyens/modules/jpdl/src/main/java/org/jbpm/jpdl/internal/xml/JpdlParser.java 2009-04-07 15:42:35 UTC (rev 4481)
+++ jbpm4/branches/tbaeyens/modules/jpdl/src/main/java/org/jbpm/jpdl/internal/xml/JpdlParser.java 2009-04-07 16:09:57 UTC (rev 4482)
@@ -182,25 +182,27 @@
// activities
List<Element> elements = XmlUtil.elements(documentElement);
for (Element element: elements) {
- JpdlBinding activityBinding = (JpdlBinding) getBinding(element, "activity");
- if (activityBinding!=null) {
- ActivityImpl activity = processDefinition.createActivity();
- parse.pushObject(activity);
- try {
- activity.setType(activityBinding.getTagName());
- activityBinding.parseName(element, activity, parse);
- activityBinding.parseFlows(element, activity, parse);
- ActivityBehaviour activityBehaviour = (ActivityBehaviour) activityBinding.parse(element, parse, this);
- activity.setBehaviour(activityBehaviour);
-
- parseEventListeners(element, parse, activity);
-
- } finally {
- parse.popObject();
+ if (!"on".equals(XmlUtil.getTagLocalName(element))) {
+ JpdlBinding activityBinding = (JpdlBinding) getBinding(element, "activity");
+ if (activityBinding!=null) {
+ ActivityImpl activity = processDefinition.createActivity();
+ parse.pushObject(activity);
+ try {
+ activity.setType(activityBinding.getTagName());
+ activityBinding.parseName(element, activity, parse);
+ activityBinding.parseFlows(element, activity, parse);
+ ActivityBehaviour activityBehaviour = (ActivityBehaviour) activityBinding.parse(element, parse, this);
+ activity.setBehaviour(activityBehaviour);
+
+ parseEventListeners(element, parse, activity);
+
+ } finally {
+ parse.popObject();
+ }
+ } else {
+ log.debug("unrecognized activity: "+XmlUtil.getTagLocalName(element));
}
- } else {
- log.debug("unrecognized activity: "+XmlUtil.getTagLocalName(element));
- }
+ }
}
for (UnresolvedTransition unresolvedTransition: unresolvedTransitions.list) {
Modified: jbpm4/branches/tbaeyens/modules/pvm/src/main/java/org/jbpm/pvm/internal/xml/Parser.java
===================================================================
--- jbpm4/branches/tbaeyens/modules/pvm/src/main/java/org/jbpm/pvm/internal/xml/Parser.java 2009-04-07 15:42:35 UTC (rev 4481)
+++ jbpm4/branches/tbaeyens/modules/pvm/src/main/java/org/jbpm/pvm/internal/xml/Parser.java 2009-04-07 16:09:57 UTC (rev 4482)
@@ -319,7 +319,7 @@
URL schemaUrl = classLoader.getResource(schemaResource);
if (schemaUrl!=null) {
String schemaLocation = schemaUrl.toString();
- log.debug("schema resource found: " + schemaResource);
+ log.trace("schema resource found: " + schemaResource);
schemaLocations.add(schemaLocation);
} else {
log.debug("skipping unavailble schema resource: " + schemaResource);
Modified: jbpm4/branches/tbaeyens/modules/test-db/src/test/java/org/jbpm/test/eventlistener/EventListenerTest.java
===================================================================
--- jbpm4/branches/tbaeyens/modules/test-db/src/test/java/org/jbpm/test/eventlistener/EventListenerTest.java 2009-04-07 15:42:35 UTC (rev 4481)
+++ jbpm4/branches/tbaeyens/modules/test-db/src/test/java/org/jbpm/test/eventlistener/EventListenerTest.java 2009-04-07 16:09:57 UTC (rev 4482)
@@ -42,7 +42,7 @@
deployJpdlXmlString(
"<process name='Insurance claim' key='ICL'>" +
" <on event='start'>" +
- " <java class='"+ProcessEventRecorder.class.getName()+"' />" +
+ " <event-listener class='"+ProcessEventRecorder.class.getName()+"' />" +
" </on>" +
" <start>" +
" <transition to='a' />" +
@@ -50,6 +50,8 @@
" <state name='a' />" +
"</process>"
);
+
+ executionService.startProcessInstanceByKey("ICL");
}
}
17 years
JBoss JBPM SVN: r4481 - in jbpm4/branches/jbpm-4.0.0.Beta1: modules/api and 18 other directories.
by do-not-reply@jboss.org
Author: heiko.braun(a)jboss.com
Date: 2009-04-07 11:42:35 -0400 (Tue, 07 Apr 2009)
New Revision: 4481
Modified:
jbpm4/branches/jbpm-4.0.0.Beta1/modules/api/pom.xml
jbpm4/branches/jbpm-4.0.0.Beta1/modules/db/pom.xml
jbpm4/branches/jbpm-4.0.0.Beta1/modules/devguide/pom.xml
jbpm4/branches/jbpm-4.0.0.Beta1/modules/distro/pom.xml
jbpm4/branches/jbpm-4.0.0.Beta1/modules/enterprise/pom.xml
jbpm4/branches/jbpm-4.0.0.Beta1/modules/examples/pom.xml
jbpm4/branches/jbpm-4.0.0.Beta1/modules/integration/console/pom.xml
jbpm4/branches/jbpm-4.0.0.Beta1/modules/integration/jboss4/pom.xml
jbpm4/branches/jbpm-4.0.0.Beta1/modules/integration/jboss5/pom.xml
jbpm4/branches/jbpm-4.0.0.Beta1/modules/integration/pom.xml
jbpm4/branches/jbpm-4.0.0.Beta1/modules/integration/spi/pom.xml
jbpm4/branches/jbpm-4.0.0.Beta1/modules/jpdl/pom.xml
jbpm4/branches/jbpm-4.0.0.Beta1/modules/log/pom.xml
jbpm4/branches/jbpm-4.0.0.Beta1/modules/pvm/pom.xml
jbpm4/branches/jbpm-4.0.0.Beta1/modules/test-base/pom.xml
jbpm4/branches/jbpm-4.0.0.Beta1/modules/test-db/pom.xml
jbpm4/branches/jbpm-4.0.0.Beta1/modules/test-load/pom.xml
jbpm4/branches/jbpm-4.0.0.Beta1/modules/test-pojo/pom.xml
jbpm4/branches/jbpm-4.0.0.Beta1/modules/userguide/pom.xml
jbpm4/branches/jbpm-4.0.0.Beta1/pom.xml
Log:
Version 4.0.0.Beta1
Modified: jbpm4/branches/jbpm-4.0.0.Beta1/modules/api/pom.xml
===================================================================
--- jbpm4/branches/jbpm-4.0.0.Beta1/modules/api/pom.xml 2009-04-07 15:28:27 UTC (rev 4480)
+++ jbpm4/branches/jbpm-4.0.0.Beta1/modules/api/pom.xml 2009-04-07 15:42:35 UTC (rev 4481)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/branches/jbpm-4.0.0.Beta1/modules/db/pom.xml
===================================================================
--- jbpm4/branches/jbpm-4.0.0.Beta1/modules/db/pom.xml 2009-04-07 15:28:27 UTC (rev 4480)
+++ jbpm4/branches/jbpm-4.0.0.Beta1/modules/db/pom.xml 2009-04-07 15:42:35 UTC (rev 4481)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/branches/jbpm-4.0.0.Beta1/modules/devguide/pom.xml
===================================================================
--- jbpm4/branches/jbpm-4.0.0.Beta1/modules/devguide/pom.xml 2009-04-07 15:28:27 UTC (rev 4480)
+++ jbpm4/branches/jbpm-4.0.0.Beta1/modules/devguide/pom.xml 2009-04-07 15:42:35 UTC (rev 4481)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/branches/jbpm-4.0.0.Beta1/modules/distro/pom.xml
===================================================================
--- jbpm4/branches/jbpm-4.0.0.Beta1/modules/distro/pom.xml 2009-04-07 15:28:27 UTC (rev 4480)
+++ jbpm4/branches/jbpm-4.0.0.Beta1/modules/distro/pom.xml 2009-04-07 15:42:35 UTC (rev 4481)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/branches/jbpm-4.0.0.Beta1/modules/enterprise/pom.xml
===================================================================
--- jbpm4/branches/jbpm-4.0.0.Beta1/modules/enterprise/pom.xml 2009-04-07 15:28:27 UTC (rev 4480)
+++ jbpm4/branches/jbpm-4.0.0.Beta1/modules/enterprise/pom.xml 2009-04-07 15:42:35 UTC (rev 4481)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/branches/jbpm-4.0.0.Beta1/modules/examples/pom.xml
===================================================================
--- jbpm4/branches/jbpm-4.0.0.Beta1/modules/examples/pom.xml 2009-04-07 15:28:27 UTC (rev 4480)
+++ jbpm4/branches/jbpm-4.0.0.Beta1/modules/examples/pom.xml 2009-04-07 15:42:35 UTC (rev 4481)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/branches/jbpm-4.0.0.Beta1/modules/integration/console/pom.xml
===================================================================
--- jbpm4/branches/jbpm-4.0.0.Beta1/modules/integration/console/pom.xml 2009-04-07 15:28:27 UTC (rev 4480)
+++ jbpm4/branches/jbpm-4.0.0.Beta1/modules/integration/console/pom.xml 2009-04-07 15:42:35 UTC (rev 4481)
@@ -12,7 +12,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm-integration</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.Beta1</version>
</parent>
<!-- Properties -->
Modified: jbpm4/branches/jbpm-4.0.0.Beta1/modules/integration/jboss4/pom.xml
===================================================================
--- jbpm4/branches/jbpm-4.0.0.Beta1/modules/integration/jboss4/pom.xml 2009-04-07 15:28:27 UTC (rev 4480)
+++ jbpm4/branches/jbpm-4.0.0.Beta1/modules/integration/jboss4/pom.xml 2009-04-07 15:42:35 UTC (rev 4481)
@@ -12,7 +12,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm-integration</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.Beta1</version>
</parent>
<!-- Properties -->
Modified: jbpm4/branches/jbpm-4.0.0.Beta1/modules/integration/jboss5/pom.xml
===================================================================
--- jbpm4/branches/jbpm-4.0.0.Beta1/modules/integration/jboss5/pom.xml 2009-04-07 15:28:27 UTC (rev 4480)
+++ jbpm4/branches/jbpm-4.0.0.Beta1/modules/integration/jboss5/pom.xml 2009-04-07 15:42:35 UTC (rev 4481)
@@ -12,7 +12,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm-integration</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.Beta1</version>
</parent>
<!-- Properties -->
Modified: jbpm4/branches/jbpm-4.0.0.Beta1/modules/integration/pom.xml
===================================================================
--- jbpm4/branches/jbpm-4.0.0.Beta1/modules/integration/pom.xml 2009-04-07 15:28:27 UTC (rev 4480)
+++ jbpm4/branches/jbpm-4.0.0.Beta1/modules/integration/pom.xml 2009-04-07 15:42:35 UTC (rev 4481)
@@ -13,7 +13,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/branches/jbpm-4.0.0.Beta1/modules/integration/spi/pom.xml
===================================================================
--- jbpm4/branches/jbpm-4.0.0.Beta1/modules/integration/spi/pom.xml 2009-04-07 15:28:27 UTC (rev 4480)
+++ jbpm4/branches/jbpm-4.0.0.Beta1/modules/integration/spi/pom.xml 2009-04-07 15:42:35 UTC (rev 4481)
@@ -12,7 +12,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm-integration</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.Beta1</version>
</parent>
<!-- Properties -->
Modified: jbpm4/branches/jbpm-4.0.0.Beta1/modules/jpdl/pom.xml
===================================================================
--- jbpm4/branches/jbpm-4.0.0.Beta1/modules/jpdl/pom.xml 2009-04-07 15:28:27 UTC (rev 4480)
+++ jbpm4/branches/jbpm-4.0.0.Beta1/modules/jpdl/pom.xml 2009-04-07 15:42:35 UTC (rev 4481)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/branches/jbpm-4.0.0.Beta1/modules/log/pom.xml
===================================================================
--- jbpm4/branches/jbpm-4.0.0.Beta1/modules/log/pom.xml 2009-04-07 15:28:27 UTC (rev 4480)
+++ jbpm4/branches/jbpm-4.0.0.Beta1/modules/log/pom.xml 2009-04-07 15:42:35 UTC (rev 4481)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/branches/jbpm-4.0.0.Beta1/modules/pvm/pom.xml
===================================================================
--- jbpm4/branches/jbpm-4.0.0.Beta1/modules/pvm/pom.xml 2009-04-07 15:28:27 UTC (rev 4480)
+++ jbpm4/branches/jbpm-4.0.0.Beta1/modules/pvm/pom.xml 2009-04-07 15:42:35 UTC (rev 4481)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/branches/jbpm-4.0.0.Beta1/modules/test-base/pom.xml
===================================================================
--- jbpm4/branches/jbpm-4.0.0.Beta1/modules/test-base/pom.xml 2009-04-07 15:28:27 UTC (rev 4480)
+++ jbpm4/branches/jbpm-4.0.0.Beta1/modules/test-base/pom.xml 2009-04-07 15:42:35 UTC (rev 4481)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/branches/jbpm-4.0.0.Beta1/modules/test-db/pom.xml
===================================================================
--- jbpm4/branches/jbpm-4.0.0.Beta1/modules/test-db/pom.xml 2009-04-07 15:28:27 UTC (rev 4480)
+++ jbpm4/branches/jbpm-4.0.0.Beta1/modules/test-db/pom.xml 2009-04-07 15:42:35 UTC (rev 4481)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/branches/jbpm-4.0.0.Beta1/modules/test-load/pom.xml
===================================================================
--- jbpm4/branches/jbpm-4.0.0.Beta1/modules/test-load/pom.xml 2009-04-07 15:28:27 UTC (rev 4480)
+++ jbpm4/branches/jbpm-4.0.0.Beta1/modules/test-load/pom.xml 2009-04-07 15:42:35 UTC (rev 4481)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/branches/jbpm-4.0.0.Beta1/modules/test-pojo/pom.xml
===================================================================
--- jbpm4/branches/jbpm-4.0.0.Beta1/modules/test-pojo/pom.xml 2009-04-07 15:28:27 UTC (rev 4480)
+++ jbpm4/branches/jbpm-4.0.0.Beta1/modules/test-pojo/pom.xml 2009-04-07 15:42:35 UTC (rev 4481)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/branches/jbpm-4.0.0.Beta1/modules/userguide/pom.xml
===================================================================
--- jbpm4/branches/jbpm-4.0.0.Beta1/modules/userguide/pom.xml 2009-04-07 15:28:27 UTC (rev 4480)
+++ jbpm4/branches/jbpm-4.0.0.Beta1/modules/userguide/pom.xml 2009-04-07 15:42:35 UTC (rev 4481)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/branches/jbpm-4.0.0.Beta1/pom.xml
===================================================================
--- jbpm4/branches/jbpm-4.0.0.Beta1/pom.xml 2009-04-07 15:28:27 UTC (rev 4480)
+++ jbpm4/branches/jbpm-4.0.0.Beta1/pom.xml 2009-04-07 15:42:35 UTC (rev 4481)
@@ -21,7 +21,7 @@
<artifactId>jbpm</artifactId>
<packaging>pom</packaging>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.Beta1</version>
<organization>
<name>JBoss, a division of Red Hat</name>
17 years
JBoss JBPM SVN: r4480 - in jbpm4/branches/jbpm-4.0.0.Beta1: modules/examples and 1 other directory.
by do-not-reply@jboss.org
Author: heiko.braun(a)jboss.com
Date: 2009-04-07 11:28:27 -0400 (Tue, 07 Apr 2009)
New Revision: 4480
Modified:
jbpm4/branches/jbpm-4.0.0.Beta1/modules/examples/pom.xml
jbpm4/branches/jbpm-4.0.0.Beta1/pom.xml
Log:
svn merge -r4472:HEAD https://svn.jboss.org/repos/jbpm/jbpm4/trunk
Modified: jbpm4/branches/jbpm-4.0.0.Beta1/modules/examples/pom.xml
===================================================================
--- jbpm4/branches/jbpm-4.0.0.Beta1/modules/examples/pom.xml 2009-04-07 15:19:00 UTC (rev 4479)
+++ jbpm4/branches/jbpm-4.0.0.Beta1/modules/examples/pom.xml 2009-04-07 15:28:27 UTC (rev 4480)
@@ -88,7 +88,7 @@
<ant antfile="scripts/antrun-test-jars.xml" target="build-jars" />
</tasks>
</configuration>
- </execution>
+ </execution>
</executions>
</plugin>
@@ -96,7 +96,7 @@
</build>
<profiles>
-
+
<!-- -Ddatabase= -->
<profile>
<id>standalone.tests</id>
@@ -206,6 +206,19 @@
</executions>
</plugin>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <failIfNoTests>false</failIfNoTests>
+ <trimStackTrace>false</trimStackTrace>
+ <excludes>
+ <!-- https://jira.jboss.org/jira/browse/JBPM-2147 -->
+ <exclude>org/jbpm/examples/concurrency/graphbased/ConcurrencyGraphBasedTest.java</exclude>
+ <exclude>org/jbpm/examples/task/candidates/TaskCandidatesTest.java</exclude>
+ <exclude>org/jbpm/examples/task/swimlane/TaskSwimlaneTest.java</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
</plugins>
</build>
</profile>
Modified: jbpm4/branches/jbpm-4.0.0.Beta1/pom.xml
===================================================================
--- jbpm4/branches/jbpm-4.0.0.Beta1/pom.xml 2009-04-07 15:19:00 UTC (rev 4479)
+++ jbpm4/branches/jbpm-4.0.0.Beta1/pom.xml 2009-04-07 15:28:27 UTC (rev 4480)
@@ -52,7 +52,7 @@
<hibernate.annotations.version>3.3.1.GA</hibernate.annotations.version>
<hsqldb.version>1.8.0.7</hsqldb.version>
<izpack.version>4.2.1</izpack.version>
- <jboss.identity.version>1.0.0-SNAPSHOT</jboss.identity.version>
+ <jboss.identity.version>1.0.0.Alpha2</jboss.identity.version>
<jboss.j2ee.version>4.2.2.GA</jboss.j2ee.version>
<jbossesb.version>4.4.0.GA</jbossesb.version>
<jboss.client.version>5.0.1.GA</jboss.client.version>
17 years
JBoss JBPM SVN: r4479 - jbpm4/branches.
by do-not-reply@jboss.org
Author: heiko.braun(a)jboss.com
Date: 2009-04-07 11:19:00 -0400 (Tue, 07 Apr 2009)
New Revision: 4479
Added:
jbpm4/branches/jbpm-4.0.0.Beta1/
Log:
Create beta1 QA branch
Copied: jbpm4/branches/jbpm-4.0.0.Beta1 (from rev 4458, jbpm4/trunk)
17 years
JBoss JBPM SVN: r4478 - jbpm4/trunk.
by do-not-reply@jboss.org
Author: tom.baeyens(a)jboss.com
Date: 2009-04-07 10:27:40 -0400 (Tue, 07 Apr 2009)
New Revision: 4478
Modified:
jbpm4/trunk/pom.xml
Log:
changed idm dependency back to version Alpha2
Modified: jbpm4/trunk/pom.xml
===================================================================
--- jbpm4/trunk/pom.xml 2009-04-07 13:58:21 UTC (rev 4477)
+++ jbpm4/trunk/pom.xml 2009-04-07 14:27:40 UTC (rev 4478)
@@ -52,7 +52,7 @@
<hibernate.annotations.version>3.3.1.GA</hibernate.annotations.version>
<hsqldb.version>1.8.0.7</hsqldb.version>
<izpack.version>4.2.1</izpack.version>
- <jboss.identity.version>1.0.0-SNAPSHOT</jboss.identity.version>
+ <jboss.identity.version>1.0.0.Alpha2</jboss.identity.version>
<jboss.j2ee.version>4.2.2.GA</jboss.j2ee.version>
<jbossesb.version>4.4.0.GA</jbossesb.version>
<jboss.client.version>5.0.1.GA</jboss.client.version>
17 years
JBoss JBPM SVN: r4477 - in projects/gwt-console/branches/hbraun: plugin-api and 5 other directories.
by do-not-reply@jboss.org
Author: heiko.braun(a)jboss.com
Date: 2009-04-07 09:58:21 -0400 (Tue, 07 Apr 2009)
New Revision: 4477
Modified:
projects/gwt-console/branches/hbraun/gwt-parent.iml
projects/gwt-console/branches/hbraun/plugin-api/plugin.iml
projects/gwt-console/branches/hbraun/plugin-example/plugin-example.iml
projects/gwt-console/branches/hbraun/rpc/gwt-rpc.iml
projects/gwt-console/branches/hbraun/server-integration/gwt-server-integration.iml
projects/gwt-console/branches/hbraun/server/gwt-server.iml
projects/gwt-console/branches/hbraun/war/gwt-war.iml
Log:
Intellij updates
Modified: projects/gwt-console/branches/hbraun/gwt-parent.iml
===================================================================
--- projects/gwt-console/branches/hbraun/gwt-parent.iml 2009-04-07 13:43:09 UTC (rev 4476)
+++ projects/gwt-console/branches/hbraun/gwt-parent.iml 2009-04-07 13:58:21 UTC (rev 4477)
@@ -20,6 +20,9 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
+ <orderEntry type="module" module-name="gwt-rpc" exported="" />
+ <orderEntry type="module" module-name="plugin" exported="" />
+ <orderEntry type="module" module-name="gwt-server-integration" exported="" />
<orderEntry type="module-library" exported="">
<library name="M2 Dep: org.slf4j:slf4j-simple:jar:1.5.2:compile">
<CLASSES>
Modified: projects/gwt-console/branches/hbraun/plugin-api/plugin.iml
===================================================================
--- projects/gwt-console/branches/hbraun/plugin-api/plugin.iml 2009-04-07 13:43:09 UTC (rev 4476)
+++ projects/gwt-console/branches/hbraun/plugin-api/plugin.iml 2009-04-07 13:58:21 UTC (rev 4477)
@@ -9,7 +9,7 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
- <orderEntry type="module" module-name="gwt-parent" />
+ <orderEntry type="module" module-name="gwt-rpc" exported="" />
<orderEntry type="module-library" exported="">
<library name="M2 Dep: com.gwtext:gwtext:jar:2.0.5:compile">
<CLASSES>
@@ -66,7 +66,7 @@
</SOURCES>
</library>
</orderEntry>
- <orderEntry type="module-library">
+ <orderEntry type="module-library" exported="">
<library name="M2 Dep: com.googlecode.gwtmosaic:gwt-mosaic-dnd:jar:0.1.9:compile">
<CLASSES>
<root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/com/googlecode/gwtmosaic/gwt-mosaic-dnd/0.1.9/gwt-mosaic-dnd-0.1.9.jar!/" />
@@ -75,7 +75,7 @@
<SOURCES />
</library>
</orderEntry>
- <orderEntry type="module-library">
+ <orderEntry type="module-library" exported="">
<library name="M2 Dep: com.googlecode.gwtmosaic:gwt-mosaic:jar:0.1.9:compile">
<CLASSES>
<root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/com/googlecode/gwtmosaic/gwt-mosaic/0.1.9/gwt-mosaic-0.1.9.jar!/" />
@@ -84,7 +84,7 @@
<SOURCES />
</library>
</orderEntry>
- <orderEntry type="module-library">
+ <orderEntry type="module-library" exported="">
<library name="M2 Dep: com.google.gwt:gwt-user:jar:1.5.3:provided">
<CLASSES>
<root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/com/google/gwt/gwt-user/1.5.3/gwt-user-1.5.3.jar!/" />
@@ -93,7 +93,7 @@
<SOURCES />
</library>
</orderEntry>
- <orderEntry type="module-library">
+ <orderEntry type="module-library" exported="">
<library name="M2 Dep: com.googlecode.gwtmosaic:gwt-mosaic-incubator:jar:0.1.9:compile">
<CLASSES>
<root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/com/googlecode/gwtmosaic/gwt-mosaic-incubator/0.1.9/gwt-mosaic-incubator-0.1.9.jar!/" />
@@ -102,7 +102,7 @@
<SOURCES />
</library>
</orderEntry>
- <orderEntry type="module-library">
+ <orderEntry type="module-library" exported="">
<library name="M2 Dep: com.googlecode.gwtmosaic:gwt-mosaic-gwtx:jar:0.1.9:compile">
<CLASSES>
<root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/com/googlecode/gwtmosaic/gwt-mosaic-gwtx/0.1.9/gwt-mosaic-gwtx-0.1.9.jar!/" />
Modified: projects/gwt-console/branches/hbraun/plugin-example/plugin-example.iml
===================================================================
--- projects/gwt-console/branches/hbraun/plugin-example/plugin-example.iml 2009-04-07 13:43:09 UTC (rev 4476)
+++ projects/gwt-console/branches/hbraun/plugin-example/plugin-example.iml 2009-04-07 13:58:21 UTC (rev 4477)
@@ -9,7 +9,8 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
- <orderEntry type="module" module-name="gwt-parent" />
+ <orderEntry type="module" module-name="gwt-rpc" />
+ <orderEntry type="module" module-name="plugin" />
<orderEntry type="module-library" exported="">
<library name="M2 Dep: com.google.code.gson:gson:jar:1.2.2:provided">
<CLASSES>
Modified: projects/gwt-console/branches/hbraun/rpc/gwt-rpc.iml
===================================================================
--- projects/gwt-console/branches/hbraun/rpc/gwt-rpc.iml 2009-04-07 13:43:09 UTC (rev 4476)
+++ projects/gwt-console/branches/hbraun/rpc/gwt-rpc.iml 2009-04-07 13:58:21 UTC (rev 4477)
@@ -46,7 +46,7 @@
</SOURCES>
</library>
</orderEntry>
- <orderEntry type="module-library">
+ <orderEntry type="module-library" exported="">
<library name="M2 Dep: com.google.gwt:gwt-user:jar:1.5.3:provided">
<CLASSES>
<root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/com/google/gwt/gwt-user/1.5.3/gwt-user-1.5.3.jar!/" />
Modified: projects/gwt-console/branches/hbraun/server/gwt-server.iml
===================================================================
--- projects/gwt-console/branches/hbraun/server/gwt-server.iml 2009-04-07 13:43:09 UTC (rev 4476)
+++ projects/gwt-console/branches/hbraun/server/gwt-server.iml 2009-04-07 13:58:21 UTC (rev 4477)
@@ -10,7 +10,8 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
- <orderEntry type="module" module-name="gwt-parent" />
+ <orderEntry type="module" module-name="gwt-rpc" />
+ <orderEntry type="module" module-name="gwt-server-integration" />
<orderEntry type="module-library" exported="">
<library name="M2 Dep: org.slf4j:slf4j-simple:jar:1.5.2:compile">
<CLASSES>
@@ -224,7 +225,7 @@
<SOURCES />
</library>
</orderEntry>
- <orderEntry type="module-library">
+ <orderEntry type="module-library" exported="">
<library name="M2 Dep: com.google.gwt:gwt-user:jar:1.5.3:provided">
<CLASSES>
<root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/com/google/gwt/gwt-user/1.5.3/gwt-user-1.5.3.jar!/" />
@@ -233,7 +234,7 @@
<SOURCES />
</library>
</orderEntry>
- <orderEntry type="module-library">
+ <orderEntry type="module-library" exported="">
<library name="M2 Dep: com.google.gwt:gwt-servlet:jar:1.5.3:runtime">
<CLASSES>
<root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/com/google/gwt/gwt-servlet/1.5.3/gwt-servlet-1.5.3.jar!/" />
Modified: projects/gwt-console/branches/hbraun/server-integration/gwt-server-integration.iml
===================================================================
--- projects/gwt-console/branches/hbraun/server-integration/gwt-server-integration.iml 2009-04-07 13:43:09 UTC (rev 4476)
+++ projects/gwt-console/branches/hbraun/server-integration/gwt-server-integration.iml 2009-04-07 13:58:21 UTC (rev 4477)
@@ -8,7 +8,7 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
- <orderEntry type="module" module-name="gwt-parent" />
+ <orderEntry type="module" module-name="gwt-rpc" exported="" />
<orderEntry type="module-library" exported="">
<library name="M2 Dep: javax.xml.bind:jaxb-api:jar:2.1:provided">
<CLASSES>
Modified: projects/gwt-console/branches/hbraun/war/gwt-war.iml
===================================================================
--- projects/gwt-console/branches/hbraun/war/gwt-war.iml 2009-04-07 13:43:09 UTC (rev 4476)
+++ projects/gwt-console/branches/hbraun/war/gwt-war.iml 2009-04-07 13:58:21 UTC (rev 4477)
@@ -11,7 +11,8 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
- <orderEntry type="module" module-name="gwt-parent" exported="" />
+ <orderEntry type="module" module-name="gwt-rpc" />
+ <orderEntry type="module" module-name="plugin" />
<orderEntry type="module-library" exported="">
<library name="M2 Dep: javax.xml.bind:jaxb-api:jar:2.1:compile">
<CLASSES>
17 years
JBoss JBPM SVN: r4476 - jbpm4/trunk/modules/examples.
by do-not-reply@jboss.org
Author: heiko.braun(a)jboss.com
Date: 2009-04-07 09:43:09 -0400 (Tue, 07 Apr 2009)
New Revision: 4476
Modified:
jbpm4/trunk/modules/examples/pom.xml
Log:
JBPM-2147: Exclude tests for beta1
Modified: jbpm4/trunk/modules/examples/pom.xml
===================================================================
--- jbpm4/trunk/modules/examples/pom.xml 2009-04-07 12:33:54 UTC (rev 4475)
+++ jbpm4/trunk/modules/examples/pom.xml 2009-04-07 13:43:09 UTC (rev 4476)
@@ -88,7 +88,7 @@
<ant antfile="scripts/antrun-test-jars.xml" target="build-jars" />
</tasks>
</configuration>
- </execution>
+ </execution>
</executions>
</plugin>
@@ -96,7 +96,7 @@
</build>
<profiles>
-
+
<!-- -Ddatabase= -->
<profile>
<id>standalone.tests</id>
@@ -206,6 +206,19 @@
</executions>
</plugin>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <failIfNoTests>false</failIfNoTests>
+ <trimStackTrace>false</trimStackTrace>
+ <excludes>
+ <!-- https://jira.jboss.org/jira/browse/JBPM-2147 -->
+ <exclude>org/jbpm/examples/concurrency/graphbased/ConcurrencyGraphBasedTest.java</exclude>
+ <exclude>org/jbpm/examples/task/candidates/TaskCandidatesTest.java</exclude>
+ <exclude>org/jbpm/examples/task/swimlane/TaskSwimlaneTest.java</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
</plugins>
</build>
</profile>
17 years
JBoss JBPM SVN: r4475 - in jbpm4/tags/jbpm-4.0.0.Beta1: bin and 19 other directories.
by do-not-reply@jboss.org
Author: tom.baeyens(a)jboss.com
Date: 2009-04-07 08:33:54 -0400 (Tue, 07 Apr 2009)
New Revision: 4475
Modified:
jbpm4/tags/jbpm-4.0.0.Beta1/bin/test.distro.bat
jbpm4/tags/jbpm-4.0.0.Beta1/bin/test.distro.sh
jbpm4/tags/jbpm-4.0.0.Beta1/build.xml
jbpm4/tags/jbpm-4.0.0.Beta1/modules/api/pom.xml
jbpm4/tags/jbpm-4.0.0.Beta1/modules/db/pom.xml
jbpm4/tags/jbpm-4.0.0.Beta1/modules/devguide/pom.xml
jbpm4/tags/jbpm-4.0.0.Beta1/modules/distro/pom.xml
jbpm4/tags/jbpm-4.0.0.Beta1/modules/enterprise/pom.xml
jbpm4/tags/jbpm-4.0.0.Beta1/modules/examples/pom.xml
jbpm4/tags/jbpm-4.0.0.Beta1/modules/integration/console/pom.xml
jbpm4/tags/jbpm-4.0.0.Beta1/modules/integration/jboss4/pom.xml
jbpm4/tags/jbpm-4.0.0.Beta1/modules/integration/jboss5/pom.xml
jbpm4/tags/jbpm-4.0.0.Beta1/modules/integration/pom.xml
jbpm4/tags/jbpm-4.0.0.Beta1/modules/integration/spi/pom.xml
jbpm4/tags/jbpm-4.0.0.Beta1/modules/jpdl/pom.xml
jbpm4/tags/jbpm-4.0.0.Beta1/modules/log/pom.xml
jbpm4/tags/jbpm-4.0.0.Beta1/modules/pvm/pom.xml
jbpm4/tags/jbpm-4.0.0.Beta1/modules/test-base/pom.xml
jbpm4/tags/jbpm-4.0.0.Beta1/modules/test-db/pom.xml
jbpm4/tags/jbpm-4.0.0.Beta1/modules/test-load/pom.xml
jbpm4/tags/jbpm-4.0.0.Beta1/modules/test-pojo/pom.xml
jbpm4/tags/jbpm-4.0.0.Beta1/modules/userguide/pom.xml
jbpm4/tags/jbpm-4.0.0.Beta1/pom.xml
Log:
setting version to 4.0.0-Beta1
Modified: jbpm4/tags/jbpm-4.0.0.Beta1/bin/test.distro.bat
===================================================================
--- jbpm4/tags/jbpm-4.0.0.Beta1/bin/test.distro.bat 2009-04-07 09:34:55 UTC (rev 4474)
+++ jbpm4/tags/jbpm-4.0.0.Beta1/bin/test.distro.bat 2009-04-07 12:33:54 UTC (rev 4475)
@@ -1,5 +1,5 @@
set JBPM4_ROOT=c:\wsjbpm4\jbpm4
-set JBPM_VERSION=4.0.0-SNAPSHOT
+set JBPM_VERSION=4.0.0-Beta1
set JBOSS_PARENT=C:\Software
set DOWNLOAD_DIR=C:\Downloads\jboss
set JBOSS_VERSION=4.2.2.GA
Modified: jbpm4/tags/jbpm-4.0.0.Beta1/bin/test.distro.sh
===================================================================
--- jbpm4/tags/jbpm-4.0.0.Beta1/bin/test.distro.sh 2009-04-07 09:34:55 UTC (rev 4474)
+++ jbpm4/tags/jbpm-4.0.0.Beta1/bin/test.distro.sh 2009-04-07 12:33:54 UTC (rev 4475)
@@ -1,7 +1,7 @@
#!/bin/sh
JBPM4_ROOT=~/jbpm/jbpm4/branches/tbaeyens
-JBPM_VERSION=4.0.0-SNAPSHOT
+JBPM_VERSION=4.0.0-Beta1
JBOSS_PARENT=~
JBOSS_VERSION=4.2.3.GA
DOWNLOAD_DIR=~/Descargas/jboss
Modified: jbpm4/tags/jbpm-4.0.0.Beta1/build.xml
===================================================================
--- jbpm4/tags/jbpm-4.0.0.Beta1/build.xml 2009-04-07 09:34:55 UTC (rev 4474)
+++ jbpm4/tags/jbpm-4.0.0.Beta1/build.xml 2009-04-07 12:33:54 UTC (rev 4475)
@@ -21,7 +21,7 @@
<property name="linux.browser" value="mozilla" />
<property name="distro.installation.dir" value="c:/software" />
- <property name="distro.version" value="4.0.0-SNAPSHOT" />
+ <property name="distro.version" value="4.0.0-Beta1" />
<property name="distro.jboss.version" value="5.0.0.GA" />
<property name="distro.eclipse" value="c:/downloads/eclipse/eclipse-jee-ganymede-SR1-win32.zip" />
<property name="distro.jboss" value="c:/downloads/jboss/jboss-${distro.jboss.version}.zip" />
Modified: jbpm4/tags/jbpm-4.0.0.Beta1/modules/api/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.0.0.Beta1/modules/api/pom.xml 2009-04-07 09:34:55 UTC (rev 4474)
+++ jbpm4/tags/jbpm-4.0.0.Beta1/modules/api/pom.xml 2009-04-07 12:33:54 UTC (rev 4475)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0-Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.0.0.Beta1/modules/db/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.0.0.Beta1/modules/db/pom.xml 2009-04-07 09:34:55 UTC (rev 4474)
+++ jbpm4/tags/jbpm-4.0.0.Beta1/modules/db/pom.xml 2009-04-07 12:33:54 UTC (rev 4475)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0-Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.0.0.Beta1/modules/devguide/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.0.0.Beta1/modules/devguide/pom.xml 2009-04-07 09:34:55 UTC (rev 4474)
+++ jbpm4/tags/jbpm-4.0.0.Beta1/modules/devguide/pom.xml 2009-04-07 12:33:54 UTC (rev 4475)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0-Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.0.0.Beta1/modules/distro/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.0.0.Beta1/modules/distro/pom.xml 2009-04-07 09:34:55 UTC (rev 4474)
+++ jbpm4/tags/jbpm-4.0.0.Beta1/modules/distro/pom.xml 2009-04-07 12:33:54 UTC (rev 4475)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0-Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.0.0.Beta1/modules/enterprise/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.0.0.Beta1/modules/enterprise/pom.xml 2009-04-07 09:34:55 UTC (rev 4474)
+++ jbpm4/tags/jbpm-4.0.0.Beta1/modules/enterprise/pom.xml 2009-04-07 12:33:54 UTC (rev 4475)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0-Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.0.0.Beta1/modules/examples/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.0.0.Beta1/modules/examples/pom.xml 2009-04-07 09:34:55 UTC (rev 4474)
+++ jbpm4/tags/jbpm-4.0.0.Beta1/modules/examples/pom.xml 2009-04-07 12:33:54 UTC (rev 4475)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0-Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.0.0.Beta1/modules/integration/console/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.0.0.Beta1/modules/integration/console/pom.xml 2009-04-07 09:34:55 UTC (rev 4474)
+++ jbpm4/tags/jbpm-4.0.0.Beta1/modules/integration/console/pom.xml 2009-04-07 12:33:54 UTC (rev 4475)
@@ -12,7 +12,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm-integration</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0-Beta1</version>
</parent>
<!-- Properties -->
Modified: jbpm4/tags/jbpm-4.0.0.Beta1/modules/integration/jboss4/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.0.0.Beta1/modules/integration/jboss4/pom.xml 2009-04-07 09:34:55 UTC (rev 4474)
+++ jbpm4/tags/jbpm-4.0.0.Beta1/modules/integration/jboss4/pom.xml 2009-04-07 12:33:54 UTC (rev 4475)
@@ -12,7 +12,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm-integration</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0-Beta1</version>
</parent>
<!-- Properties -->
Modified: jbpm4/tags/jbpm-4.0.0.Beta1/modules/integration/jboss5/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.0.0.Beta1/modules/integration/jboss5/pom.xml 2009-04-07 09:34:55 UTC (rev 4474)
+++ jbpm4/tags/jbpm-4.0.0.Beta1/modules/integration/jboss5/pom.xml 2009-04-07 12:33:54 UTC (rev 4475)
@@ -12,7 +12,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm-integration</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0-Beta1</version>
</parent>
<!-- Properties -->
Modified: jbpm4/tags/jbpm-4.0.0.Beta1/modules/integration/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.0.0.Beta1/modules/integration/pom.xml 2009-04-07 09:34:55 UTC (rev 4474)
+++ jbpm4/tags/jbpm-4.0.0.Beta1/modules/integration/pom.xml 2009-04-07 12:33:54 UTC (rev 4475)
@@ -13,7 +13,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0-Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.0.0.Beta1/modules/integration/spi/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.0.0.Beta1/modules/integration/spi/pom.xml 2009-04-07 09:34:55 UTC (rev 4474)
+++ jbpm4/tags/jbpm-4.0.0.Beta1/modules/integration/spi/pom.xml 2009-04-07 12:33:54 UTC (rev 4475)
@@ -12,7 +12,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm-integration</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0-Beta1</version>
</parent>
<!-- Properties -->
Modified: jbpm4/tags/jbpm-4.0.0.Beta1/modules/jpdl/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.0.0.Beta1/modules/jpdl/pom.xml 2009-04-07 09:34:55 UTC (rev 4474)
+++ jbpm4/tags/jbpm-4.0.0.Beta1/modules/jpdl/pom.xml 2009-04-07 12:33:54 UTC (rev 4475)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0-Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.0.0.Beta1/modules/log/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.0.0.Beta1/modules/log/pom.xml 2009-04-07 09:34:55 UTC (rev 4474)
+++ jbpm4/tags/jbpm-4.0.0.Beta1/modules/log/pom.xml 2009-04-07 12:33:54 UTC (rev 4475)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0-Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.0.0.Beta1/modules/pvm/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.0.0.Beta1/modules/pvm/pom.xml 2009-04-07 09:34:55 UTC (rev 4474)
+++ jbpm4/tags/jbpm-4.0.0.Beta1/modules/pvm/pom.xml 2009-04-07 12:33:54 UTC (rev 4475)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0-Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.0.0.Beta1/modules/test-base/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.0.0.Beta1/modules/test-base/pom.xml 2009-04-07 09:34:55 UTC (rev 4474)
+++ jbpm4/tags/jbpm-4.0.0.Beta1/modules/test-base/pom.xml 2009-04-07 12:33:54 UTC (rev 4475)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0-Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.0.0.Beta1/modules/test-db/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.0.0.Beta1/modules/test-db/pom.xml 2009-04-07 09:34:55 UTC (rev 4474)
+++ jbpm4/tags/jbpm-4.0.0.Beta1/modules/test-db/pom.xml 2009-04-07 12:33:54 UTC (rev 4475)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0-Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.0.0.Beta1/modules/test-load/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.0.0.Beta1/modules/test-load/pom.xml 2009-04-07 09:34:55 UTC (rev 4474)
+++ jbpm4/tags/jbpm-4.0.0.Beta1/modules/test-load/pom.xml 2009-04-07 12:33:54 UTC (rev 4475)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0-Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.0.0.Beta1/modules/test-pojo/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.0.0.Beta1/modules/test-pojo/pom.xml 2009-04-07 09:34:55 UTC (rev 4474)
+++ jbpm4/tags/jbpm-4.0.0.Beta1/modules/test-pojo/pom.xml 2009-04-07 12:33:54 UTC (rev 4475)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0-Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.0.0.Beta1/modules/userguide/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.0.0.Beta1/modules/userguide/pom.xml 2009-04-07 09:34:55 UTC (rev 4474)
+++ jbpm4/tags/jbpm-4.0.0.Beta1/modules/userguide/pom.xml 2009-04-07 12:33:54 UTC (rev 4475)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0-Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.0.0.Beta1/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.0.0.Beta1/pom.xml 2009-04-07 09:34:55 UTC (rev 4474)
+++ jbpm4/tags/jbpm-4.0.0.Beta1/pom.xml 2009-04-07 12:33:54 UTC (rev 4475)
@@ -21,7 +21,7 @@
<artifactId>jbpm</artifactId>
<packaging>pom</packaging>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0-Beta1</version>
<organization>
<name>JBoss, a division of Red Hat</name>
17 years