Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Upgraded version to 5.11
  • Loading branch information
tijsrademakers committed Nov 29, 2012
1 parent 7997ef0 commit 25b284a
Show file tree
Hide file tree
Showing 34 changed files with 45 additions and 47 deletions.
2 changes: 1 addition & 1 deletion distro/build.xml
Expand Up @@ -4,7 +4,7 @@

<property file="${user.home}/.activiti/build.properties" />

<property name="activiti.version" value="5.11-SNAPSHOT" />
<property name="activiti.version" value="5.11" />
<property name="target.distro.root" value="target/zip/activiti-${activiti.version}" />
<property name="activiti.website" value="../../activiti-website" />

Expand Down
6 changes: 3 additions & 3 deletions distro/src/notice.txt
Expand Up @@ -16,17 +16,17 @@ This software package includes changed source code of the following libraries:

JUEL
* Location: http://juel.sourceforge.net/
* Included in activiti-engine-5.11-SNAPSHOT.jar in package org.activiti.engine.impl.juel
* Included in activiti-engine-5.11.jar in package org.activiti.engine.impl.juel
* License: Apache V2

Quartz
* Location: http://www.quartz-scheduler.org/
* CronExpression is included in activiti-engine-5.11-SNAPSHOT.jar in package org.activiti.engine.impl.calendar
* CronExpression is included in activiti-engine-5.11.jar in package org.activiti.engine.impl.calendar
* License: Apache V2

JSON
* Location: http://www.JSON.org/java
* Included in activiti-engine-5.11-SNAPSHOT.jar in package org.activiti.engine.impl.json
* Included in activiti-engine-5.11.jar in package org.activiti.engine.impl.json
* License:
===============================================================================
Copyright (c) 2002 JSON.org
Expand Down
2 changes: 1 addition & 1 deletion modules/activiti-bpmn-converter/pom.xml
Expand Up @@ -10,7 +10,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.11-SNAPSHOT</version>
<version>5.11</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion modules/activiti-bpmn-model/pom.xml
Expand Up @@ -10,7 +10,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.11-SNAPSHOT</version>
<version>5.11</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion modules/activiti-cactus/pom.xml
Expand Up @@ -12,7 +12,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.11-SNAPSHOT</version>
<version>5.11</version>
</parent>

<dependencies>
Expand Down
4 changes: 1 addition & 3 deletions modules/activiti-camel/pom.xml
Expand Up @@ -4,23 +4,21 @@
<modelVersion>4.0.0</modelVersion>

<name>Activiti - Camel</name>
<groupId>org.activiti</groupId>
<artifactId>activiti-camel</artifactId>
<packaging>bundle</packaging>

<parent>
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.11-SNAPSHOT</version>
<version>5.11</version>
</parent>


<dependencies>
<dependency>
<groupId>org.activiti</groupId>
<artifactId>activiti-spring</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
Expand Down
2 changes: 1 addition & 1 deletion modules/activiti-cdi/pom.xml
Expand Up @@ -11,7 +11,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.11-SNAPSHOT</version>
<version>5.11</version>
</parent>


Expand Down
2 changes: 1 addition & 1 deletion modules/activiti-cxf/pom.xml
Expand Up @@ -10,7 +10,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.11-SNAPSHOT</version>
<version>5.11</version>

</parent>

Expand Down
2 changes: 1 addition & 1 deletion modules/activiti-engine/pom.xml
Expand Up @@ -10,7 +10,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.11-SNAPSHOT</version>
<version>5.11</version>
</parent>

<dependencies>
Expand Down
Expand Up @@ -49,7 +49,7 @@
public interface ProcessEngine extends EngineServices {

/** the version of the activiti library */
public static String VERSION = "5.11-SNAPSHOT";
public static String VERSION = "5.11";

/** The name as specified in 'process-engine-name' in
* the activiti.cfg.xml configuration file.
Expand Down
Expand Up @@ -6,10 +6,10 @@ create table ACT_GE_PROPERTY (
);

insert into ACT_GE_PROPERTY
values ('schema.version', '5.11-SNAPSHOT', 1);
values ('schema.version', '5.11', 1);

insert into ACT_GE_PROPERTY
values ('schema.history', 'create(5.11-SNAPSHOT)', 1);
values ('schema.history', 'create(5.11)', 1);

insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
Expand Down
Expand Up @@ -6,10 +6,10 @@ create table ACT_GE_PROPERTY (
);

insert into ACT_GE_PROPERTY
values ('schema.version', '5.11-SNAPSHOT', 1);
values ('schema.version', '5.11', 1);

insert into ACT_GE_PROPERTY
values ('schema.history', 'create(5.11-SNAPSHOT)', 1);
values ('schema.history', 'create(5.11)', 1);

insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
Expand Down
Expand Up @@ -6,10 +6,10 @@ create table ACT_GE_PROPERTY (
);

insert into ACT_GE_PROPERTY
values ('schema.version', '5.11-SNAPSHOT', 1);
values ('schema.version', '5.11', 1);

insert into ACT_GE_PROPERTY
values ('schema.history', 'create(5.11-SNAPSHOT)', 1);
values ('schema.history', 'create(5.11)', 1);

insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
Expand Down
Expand Up @@ -6,10 +6,10 @@ create table ACT_GE_PROPERTY (
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin;

insert into ACT_GE_PROPERTY
values ('schema.version', '5.11-SNAPSHOT', 1);
values ('schema.version', '5.11', 1);

insert into ACT_GE_PROPERTY
values ('schema.history', 'create(5.11-SNAPSHOT)', 1);
values ('schema.history', 'create(5.11)', 1);

insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
Expand Down
Expand Up @@ -6,10 +6,10 @@ create table ACT_GE_PROPERTY (
);

insert into ACT_GE_PROPERTY
values ('schema.version', '5.11-SNAPSHOT', 1);
values ('schema.version', '5.11', 1);

insert into ACT_GE_PROPERTY
values ('schema.history', 'create(5.11-SNAPSHOT)', 1);
values ('schema.history', 'create(5.11)', 1);

insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
Expand Down
Expand Up @@ -6,10 +6,10 @@ create table ACT_GE_PROPERTY (
);

insert into ACT_GE_PROPERTY
values ('schema.version', '5.11-SNAPSHOT', 1);
values ('schema.version', '5.11', 1);

insert into ACT_GE_PROPERTY
values ('schema.history', 'create(5.11-SNAPSHOT)', 1);
values ('schema.history', 'create(5.11)', 1);

insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
Expand Down
2 changes: 1 addition & 1 deletion modules/activiti-explorer/pom.xml
Expand Up @@ -11,7 +11,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.11-SNAPSHOT</version>
<version>5.11</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion modules/activiti-json-converter/pom.xml
Expand Up @@ -10,7 +10,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.11-SNAPSHOT</version>
<version>5.11</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion modules/activiti-modeler/pom.xml
Expand Up @@ -11,7 +11,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.11-SNAPSHOT</version>
<version>5.11</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion modules/activiti-mule/pom.xml
Expand Up @@ -10,7 +10,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.11-SNAPSHOT</version>
<version>5.11</version>

</parent>

Expand Down
2 changes: 1 addition & 1 deletion modules/activiti-osgi/pom.xml
Expand Up @@ -11,7 +11,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.11-SNAPSHOT</version>
<version>5.11</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion modules/activiti-rest/pom.xml
Expand Up @@ -10,7 +10,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.11-SNAPSHOT</version>
<version>5.11</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion modules/activiti-spring/pom.xml
Expand Up @@ -9,7 +9,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.11-SNAPSHOT</version>
<version>5.11</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion modules/activiti-upgrade/pom.xml
Expand Up @@ -6,7 +6,7 @@
<name>Activiti - Upgrade</name>
<groupId>org.activiti</groupId>
<artifactId>activiti-upgrade</artifactId>
<version>5.11-SNAPSHOT</version>
<version>5.11</version>

<properties>
<skipTests>true</skipTests>
Expand Down
2 changes: 1 addition & 1 deletion modules/activiti-webapp-explorer2/pom.xml
Expand Up @@ -11,7 +11,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.11-SNAPSHOT</version>
<version>5.11</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion modules/activiti-webapp-rest2/pom.xml
Expand Up @@ -10,7 +10,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.11-SNAPSHOT</version>
<version>5.11</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -8,7 +8,7 @@
<artifactId>activiti-root</artifactId>

<packaging>pom</packaging>
<version>5.11-SNAPSHOT</version>
<version>5.11</version>
<properties>
<spring.framework.version>3.1.2.RELEASE</spring.framework.version>
<mule.version>3.3.0</mule.version>
Expand Down
2 changes: 1 addition & 1 deletion qa/build.xml
Expand Up @@ -4,7 +4,7 @@

<property file="${user.home}/.activiti/build.properties" />
<property file="../distro/src/setup/build.properties" />
<property name="activiti.version" value="5.11-SNAPSHOT" />
<property name="activiti.version" value="5.11" />
<property name="activiti.home" value="../distro/target/activiti-${activiti.version}" />
<property name="macos.browser" value="/usr/bin/open" />
<property name="windows.browser" value="C:/Program Files/Mozilla Firefox/firefox.exe" />
Expand Down
2 changes: 1 addition & 1 deletion qa/dbclean/pom.xml
Expand Up @@ -8,7 +8,7 @@
<artifactId>activiti-dbclean</artifactId>

<packaging>pom</packaging>
<version>5.11-SNAPSHOT</version>
<version>5.11</version>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion qa/upgrade/build.xml
Expand Up @@ -2,7 +2,7 @@
<project name="activiti.qa.upgrade" default="upgrade">

<property file="${user.home}/.activiti/build.properties" />
<property name="activiti.version" value="5.11-SNAPSHOT" />
<property name="activiti.version" value="5.11" />
<property name="database" value="h2" />
<property name="activiti.old.version" value="5.0" />
<property name="downloads.dir" value="${user.home}/.activiti/downloads" />
Expand Down
4 changes: 2 additions & 2 deletions qa/upgrade/pom.xml
Expand Up @@ -6,13 +6,13 @@
<name>Activiti - Upgrade Fetcher</name>
<groupId>org.activiti</groupId>
<artifactId>activiti-upgrade-fetcher</artifactId>
<version>5.11-SNAPSHOT</version>
<version>5.11</version>

<parent>
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.11-SNAPSHOT</version>
<version>5.11</version>
</parent>

<dependencies>
Expand Down
6 changes: 3 additions & 3 deletions scripts/start-explorer.sh
@@ -1,12 +1,12 @@
#!/bin/bash
export MAVEN_OPTS="-Xms521M -Xmx1024M -noverify -javaagent:/Applications/ZeroTurnaround/JRebel/jrebel.jar -Xdebug -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n"
export MAVEN_OPTS="-Xms521M -Xmx1024M -noverify -javaagent:/Users/trademakers/Downloads/jrebel/jrebel.jar -Xdebug -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n"
cd ..
mvn -T 1C -PbuildWebappDependencies clean install
mvn3 -T 1C -PbuildWebappDependencies clean install
STATUS=$?
if [ $STATUS -eq 0 ]
then
cd modules/activiti-webapp-explorer2
mvn clean package jetty:run
mvn3 clean package jetty:run
else
echo "Build failure in dependent project. Cannot boot Activiti Explorer."
fi
2 changes: 1 addition & 1 deletion userguide/src/en/chapters/ch02-GettingStarted.xml
Expand Up @@ -142,7 +142,7 @@
contain all the Activiti jars (and the source jars). The dependencies are not shipped this way.
The required dependencies of the Activiti engine are (generated using <literal>mvn dependency:tree</literal>):
<programlisting>
org.activiti:activiti-engine:jar:5.11-SNAPSHOT
org.activiti:activiti-engine:jar:5.11
+- org.apache.commons:commons-email:jar:1.2:compile
| +- javax.mail:mail:jar:1.4.1:compile
| \- javax.activation:activation:jar:1.1:compile
Expand Down
2 changes: 1 addition & 1 deletion userguide/src/en/index.xml
Expand Up @@ -20,7 +20,7 @@

<book>

<bookinfo><title>Activiti 5.11-SNAPSHOT User Guide</title></bookinfo>
<bookinfo><title>Activiti 5.11 User Guide</title></bookinfo>

<toc />

Expand Down

0 comments on commit 25b284a

Please sign in to comment.