Skip to content

Commit

Permalink
Moved to version 6.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tijsrademakers committed Oct 13, 2017
1 parent f4063be commit a5c0ced
Show file tree
Hide file tree
Showing 134 changed files with 1,483 additions and 1,343 deletions.
35 changes: 34 additions & 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}/.flowable/build.properties" />

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

Expand Down Expand Up @@ -361,6 +361,39 @@
<copy todir="${target.distro.root}/docs/javadocs">
<fileset dir="../modules/flowable-engine/target/site/apidocs" />
</copy>

<exec executable="${mvn.executable}" dir="../modules/flowable-cmmn-engine">
<arg line="-DexcludePackageNames=org.flowable.cmmn.engine.impl* javadoc:javadoc" />
</exec>
<mkdir dir="${target.distro.root}/docs/cmmn-javadocs" />
<copy todir="${target.distro.root}/docs/cmmn-javadocs">
<fileset dir="../modules/flowable-cmmn-engine/target/site/apidocs" />
</copy>

<exec executable="${mvn.executable}" dir="../modules/flowable-task-service-api">
<arg line="javadoc:javadoc" />
</exec>
<mkdir dir="${target.distro.root}/docs/task-javadocs" />
<copy todir="${target.distro.root}/docs/task-javadocs">
<fileset dir="../modules/flowable-task-service-api/target/site/apidocs" />
</copy>

<exec executable="${mvn.executable}" dir="../modules/flowable-variable-service-api">
<arg line="javadoc:javadoc" />
</exec>
<mkdir dir="${target.distro.root}/docs/variable-javadocs" />
<copy todir="${target.distro.root}/docs/variable-javadocs">
<fileset dir="../modules/flowable-variable-service-api/target/site/apidocs" />
</copy>

<exec executable="${mvn.executable}" dir="../modules/flowable-job-service-api">
<arg line="javadoc:javadoc" />
</exec>
<mkdir dir="${target.distro.root}/docs/job-javadocs" />
<copy todir="${target.distro.root}/docs/job-javadocs">
<fileset dir="../modules/flowable-job-service-api/target/site/apidocs" />
</copy>

<!-- USERGUIDE -->
<ant antfile="../userguide/build.xml" inheritall="false" />
<mkdir dir="${target.distro.root}/docs/userguide" />
Expand Down
35 changes: 35 additions & 0 deletions distro/src/readme.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,41 @@ <h1>Links</h1>

<h1>Flowable Release Notes</h1>

<h3>Release Notes - Flowable - 6.2.0</h3>

<h4>Highlights</h4>

<ul>
<li>Introduction of a new CMMN 1.1 Engine. This provides an implementation of the <a href="http://www.omg.org/spec/CMMN/1.1/">CMMN 1.1 OMG standard</a>. A lot of effort has been put in this
new Engine, and it uses a new set of database tables optimized for CMMN execution. We've added a new CMMN user guide to help you getting started. Note that since this is a first release, the
CMMN Engine is marked as an experimental feature and missing features like timers and HTTP and Decision tasks will be added in next releases.</li>
<li>Added a CMMN editor to the Flowable Modeler app.</li>
<li>Added support for CMMN cases ot the Flowable Task app.</li>
<li>The BPMN and CMMN engine share a number of common services like Tasks, Variables, Identity links and Jobs. Therefore these services are extracted from the core BPMN engine module and
new modules have been created for each one of these services. The BPMN and CMMN engines make use of these services to provide for example Task and Variable support. With this approach Flowable is very
flexible in the deployment model. You can run only the BPMN Engine, only the CMMN Engine or run them both together without any issues.</li>
<li>Various small bugfixes all around.</li>
</ul>

<h4>Community contributors</h4>

<ul>
<li>David Malkovsky (dbmalkovsky)</li>
<li>Filip Hrisafov (filiphr)</li>
<li>Robert Hafner (roberthafner)</li>
<li>Marco van Zwetselaar (zwets)</li>
<li>Lori Small (lsmall)</li>
<li>Michael Lippens (mlippens)</li>
</ul>

<h4>Upgrade notes</h4>

<p>Because of the extraction of the Task, Variable, Identity Link and Job services, we had to change the package names of the classes used in these modules.
This means that for example TaskQuery and Job Query have been moved to a new package. This was done to adhere to OSGi standards and to be ready for the new Java 9 version.
This however does mean that you run into some compilation issues while migration to version 6.2.0. We always try to prevent this as much as we can, but due to the new modules this wasn't possible in this release.
The common naming pattern of these new service is org.flowable.{servicename}.api for the API module and org.flowable.{servicename}.service for the service implementation module.
So org.flowable.task.api and org.flowable.task.service for example.</p>

<h3>Release Notes - Flowable - 6.1.2</h3>

<h4>Bug fix release</h4>
Expand Down
2 changes: 1 addition & 1 deletion modules/flowable-app-rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<groupId>org.flowable</groupId>
<artifactId>flowable-root</artifactId>
<relativePath>../..</relativePath>
<version>6.2.0-SNAPSHOT</version>
<version>6.2.0</version>
</parent>

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

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

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

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


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


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

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

<properties>
Expand Down
2 changes: 1 addition & 1 deletion modules/flowable-cmmn-engine-configurator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<groupId>org.flowable</groupId>
<artifactId>flowable-root</artifactId>
<relativePath>../..</relativePath>
<version>6.2.0-SNAPSHOT</version>
<version>6.2.0</version>
</parent>

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

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import org.junit.runners.model.Statement;

/**
* Convenience for ProcessEngine and services initialization in the form of a JUnit rule.
* Convenience for CmmnEngine and services initialization in the form of a JUnit rule.
*
* <p>
* Usage:
Expand All @@ -51,13 +51,13 @@
* </pre>
*
* <p>
* The ProcessEngine and the services will be made available to the test class through the getters of the FlowableRule. The processEngine will be initialized by default with the flowable.cfg.xml
* resource on the classpath. To specify a different configuration file, pass the resource location in {@link #FlowableRule(String) the appropriate constructor}. Process engines will be cached
* statically. Right before the first time the setUp is called for a given configuration resource, the process engine will be constructed.
* The CmmnEngine and the services will be made available to the test class through the getters of the FlowableCmmnRule. The cmmnEngine will be initialized by default with the flowable.cfg.xml
* resource on the classpath. To specify a different configuration file, pass the resource location in {@link #FlowableCmmnRule(String) the appropriate constructor}. Cmmn engines will be cached
* statically. Right before the first time the setUp is called for a given configuration resource, the cmmn engine will be constructed.
* </p>
*
* <p>
* You can declare a deployment with the {@link Deployment} annotation. This base class will make sure that this deployment gets deployed before the setUp and
* You can declare a deployment with the {@link CmmnDeployment} annotation. This base class will make sure that this deployment gets deployed before the setUp and
* {@link CmmnRepositoryService#deleteDeployment(String, boolean) cascade deleted} after the tearDown.
* </p>
*
Expand Down
2 changes: 1 addition & 1 deletion modules/flowable-cmmn-image-generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<groupId>org.flowable</groupId>
<artifactId>flowable-root</artifactId>
<relativePath>../..</relativePath>
<version>6.2.0-SNAPSHOT</version>
<version>6.2.0</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion modules/flowable-cmmn-json-converter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<groupId>org.flowable</groupId>
<artifactId>flowable-root</artifactId>
<relativePath>../..</relativePath>
<version>6.2.0-SNAPSHOT</version>
<version>6.2.0</version>
</parent>

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

<properties>
Expand Down
2 changes: 1 addition & 1 deletion modules/flowable-cmmn-spring-configurator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<groupId>org.flowable</groupId>
<artifactId>flowable-root</artifactId>
<relativePath>../..</relativePath>
<version>6.2.0-SNAPSHOT</version>
<version>6.2.0</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion modules/flowable-cmmn-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<groupId>org.flowable</groupId>
<artifactId>flowable-root</artifactId>
<relativePath>../..</relativePath>
<version>6.2.0-SNAPSHOT</version>
<version>6.2.0</version>
</parent>

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

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

<properties>
Expand Down
2 changes: 1 addition & 1 deletion modules/flowable-content-engine-configurator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<groupId>org.flowable</groupId>
<artifactId>flowable-root</artifactId>
<relativePath>../..</relativePath>
<version>6.2.0-SNAPSHOT</version>
<version>6.2.0</version>
</parent>

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

<properties>
Expand Down
2 changes: 1 addition & 1 deletion modules/flowable-content-rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<groupId>org.flowable</groupId>
<artifactId>flowable-root</artifactId>
<relativePath>../..</relativePath>
<version>6.2.0-SNAPSHOT</version>
<version>6.2.0</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion modules/flowable-content-spring-configurator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<groupId>org.flowable</groupId>
<artifactId>flowable-root</artifactId>
<relativePath>../..</relativePath>
<version>6.2.0-SNAPSHOT</version>
<version>6.2.0</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion modules/flowable-content-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<groupId>org.flowable</groupId>
<artifactId>flowable-root</artifactId>
<relativePath>../..</relativePath>
<version>6.2.0-SNAPSHOT</version>
<version>6.2.0</version>
</parent>

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

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

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

<properties>
Expand Down
2 changes: 1 addition & 1 deletion modules/flowable-dmn-engine-configurator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<groupId>org.flowable</groupId>
<artifactId>flowable-root</artifactId>
<relativePath>../..</relativePath>
<version>6.2.0-SNAPSHOT</version>
<version>6.2.0</version>
</parent>

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

<properties>
Expand Down
2 changes: 1 addition & 1 deletion modules/flowable-dmn-json-converter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>org.flowable</groupId>
<artifactId>flowable-root</artifactId>
<relativePath>../..</relativePath>
<version>6.2.0-SNAPSHOT</version>
<version>6.2.0</version>
</parent>
<packaging>jar</packaging>

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

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

<properties>
Expand Down
2 changes: 1 addition & 1 deletion modules/flowable-dmn-spring-configurator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<groupId>org.flowable</groupId>
<artifactId>flowable-root</artifactId>
<relativePath>../..</relativePath>
<version>6.2.0-SNAPSHOT</version>
<version>6.2.0</version>
</parent>

<properties>
Expand Down
Loading

0 comments on commit a5c0ced

Please sign in to comment.