Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Activiti/Activiti
Browse files Browse the repository at this point in the history
  • Loading branch information
jbarrez committed Nov 29, 2012
2 parents b9bf912 + 83b5fb6 commit 9663f5e
Show file tree
Hide file tree
Showing 41 changed files with 590 additions and 74 deletions.
2 changes: 1 addition & 1 deletion distro/build.xml
Original file line number Diff line number Diff line change
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.12-SNAPSHOT" />
<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
Original file line number Diff line number Diff line change
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.12-SNAPSHOT.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.12-SNAPSHOT.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.12-SNAPSHOT.jar in package org.activiti.engine.impl.json
* License:
===============================================================================
Copyright (c) 2002 JSON.org
Expand Down
311 changes: 308 additions & 3 deletions distro/src/readme.html

Large diffs are not rendered by default.

26 changes: 25 additions & 1 deletion modules/activiti-bpmn-converter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.11-SNAPSHOT</version>
<version>5.12-SNAPSHOT</version>
</parent>

<dependencies>
Expand Down Expand Up @@ -46,6 +46,30 @@
</dependency>
</dependencies>

<profiles>
<profile>
<id>distro</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<repositories>
<!-- This repo declaration is here for as this will be part of the distro -->
<repository>
Expand Down
26 changes: 25 additions & 1 deletion modules/activiti-bpmn-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.11-SNAPSHOT</version>
<version>5.12-SNAPSHOT</version>
</parent>

<dependencies>
Expand All @@ -20,6 +20,30 @@
</dependency>
</dependencies>

<profiles>
<profile>
<id>distro</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<repositories>
<!-- This repo declaration is here for as this will be part of the distro -->
<repository>
Expand Down
2 changes: 1 addition & 1 deletion modules/activiti-cactus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.11-SNAPSHOT</version>
<version>5.12-SNAPSHOT</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion modules/activiti-camel/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.11-SNAPSHOT</version>
<version>5.12-SNAPSHOT</version>
</parent>


Expand Down
2 changes: 1 addition & 1 deletion modules/activiti-cdi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.11-SNAPSHOT</version>
<version>5.12-SNAPSHOT</version>
</parent>


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

</parent>

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

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
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.12-SNAPSHOT";

/** The name as specified in 'process-engine-name' in
* the activiti.cfg.xml configuration file.
Expand Down
Original file line number Diff line number Diff line change
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.12-SNAPSHOT', 1);

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

insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
Expand Down
Original file line number Diff line number Diff line change
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.12-SNAPSHOT', 1);

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

insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
Expand Down
Original file line number Diff line number Diff line change
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.12-SNAPSHOT', 1);

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

insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
Expand Down
Original file line number Diff line number Diff line change
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.12-SNAPSHOT', 1);

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

insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
Expand Down
Original file line number Diff line number Diff line change
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.12-SNAPSHOT', 1);

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

insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
Expand Down
Original file line number Diff line number Diff line change
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.12-SNAPSHOT', 1);

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

insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
Expand Down
26 changes: 25 additions & 1 deletion modules/activiti-explorer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.11-SNAPSHOT</version>
<version>5.12-SNAPSHOT</version>
</parent>

<properties>
Expand Down Expand Up @@ -141,6 +141,30 @@
</dependency>

</dependencies>

<profiles>
<profile>
<id>distro</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<repositories>
<repository>
Expand Down
Loading

0 comments on commit 9663f5e

Please sign in to comment.