提交 a2670ade 编写于 作者: T tijsrademakers

Moved to 5.15-SNAPSHOT

上级 1e70b51a
......@@ -4,7 +4,7 @@
<property file="${user.home}/.activiti/build.properties" />
<property name="activiti.version" value="5.14" />
<property name="activiti.version" value="5.15-SNAPSHOT" />
<property name="target.distro.root" value="target/zip/activiti-${activiti.version}" />
<property name="activiti.website" value="../../activiti-website" />
......
......@@ -46,17 +46,17 @@ This software package includes changed source code of the following libraries:
JUEL
* Location: http://juel.sourceforge.net/
* Included in activiti-engine-5.14.jar in package org.activiti.engine.impl.juel
* Included in activiti-engine-5.15-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.14.jar in package org.activiti.engine.impl.calendar
* CronExpression is included in activiti-engine-5.15-SNAPSHOT.jar in package org.activiti.engine.impl.calendar
* License: Apache V2
JSON
* Location: http://www.JSON.org/java
* Included in activiti-engine-5.14.jar in package org.activiti.engine.impl.json
* Included in activiti-engine-5.15-SNAPSHOT.jar in package org.activiti.engine.impl.json
* License:
===============================================================================
Copyright (c) 2002 JSON.org
......
......@@ -10,7 +10,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
</parent>
<properties>
......
......@@ -10,7 +10,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
</parent>
<build>
......
......@@ -10,7 +10,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
</parent>
<properties>
......
......@@ -12,7 +12,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
</parent>
<dependencies>
......
......@@ -11,7 +11,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
</parent>
......
......@@ -11,7 +11,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
</parent>
......
......@@ -11,7 +11,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
</parent>
<properties>
......
......@@ -10,7 +10,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
</parent>
<properties>
......
......@@ -11,7 +11,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
</parent>
<properties>
......
......@@ -10,7 +10,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
</parent>
<dependencies>
......
......@@ -49,7 +49,7 @@ package org.activiti.engine;
public interface ProcessEngine extends EngineServices {
/** the version of the activiti library */
public static String VERSION = "5.14";
public static String VERSION = "5.15-SNAPSHOT";
/** The name as specified in 'process-engine-name' in
* the activiti.cfg.xml configuration file.
......
......@@ -6,10 +6,10 @@ create table ACT_GE_PROPERTY (
);
insert into ACT_GE_PROPERTY
values ('schema.version', '5.14', 1);
values ('schema.version', '5.15-SNAPSHOT', 1);
insert into ACT_GE_PROPERTY
values ('schema.history', 'create(5.14)', 1);
values ('schema.history', 'create(5.15-SNAPSHOT)', 1);
insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
......
......@@ -6,10 +6,10 @@ create table ACT_GE_PROPERTY (
);
insert into ACT_GE_PROPERTY
values ('schema.version', '5.14', 1);
values ('schema.version', '5.15-SNAPSHOT', 1);
insert into ACT_GE_PROPERTY
values ('schema.history', 'create(5.14)', 1);
values ('schema.history', 'create(5.15-SNAPSHOT)', 1);
insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
......
......@@ -6,10 +6,10 @@ create table ACT_GE_PROPERTY (
);
insert into ACT_GE_PROPERTY
values ('schema.version', '5.14', 1);
values ('schema.version', '5.15-SNAPSHOT', 1);
insert into ACT_GE_PROPERTY
values ('schema.history', 'create(5.14)', 1);
values ('schema.history', 'create(5.15-SNAPSHOT)', 1);
insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
......
......@@ -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.14', 1);
values ('schema.version', '5.15-SNAPSHOT', 1);
insert into ACT_GE_PROPERTY
values ('schema.history', 'create(5.14)', 1);
values ('schema.history', 'create(5.15-SNAPSHOT)', 1);
insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
......
......@@ -6,10 +6,10 @@ create table ACT_GE_PROPERTY (
);
insert into ACT_GE_PROPERTY
values ('schema.version', '5.14', 1);
values ('schema.version', '5.15-SNAPSHOT', 1);
insert into ACT_GE_PROPERTY
values ('schema.history', 'create(5.14)', 1);
values ('schema.history', 'create(5.15-SNAPSHOT)', 1);
insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
......
......@@ -6,10 +6,10 @@ create table ACT_GE_PROPERTY (
);
insert into ACT_GE_PROPERTY
values ('schema.version', '5.14', 1);
values ('schema.version', '5.15-SNAPSHOT', 1);
insert into ACT_GE_PROPERTY
values ('schema.history', 'create(5.14)', 1);
values ('schema.history', 'create(5.15-SNAPSHOT)', 1);
insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
......
......@@ -11,7 +11,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
</parent>
<properties>
......
......@@ -10,7 +10,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
</parent>
<properties>
......
......@@ -10,7 +10,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
</parent>
<properties>
......
......@@ -11,7 +11,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
</parent>
<properties>
......
......@@ -10,7 +10,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
</parent>
<properties>
......
......@@ -11,7 +11,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
</parent>
<build>
......
......@@ -10,7 +10,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
</parent>
<properties>
......
......@@ -10,7 +10,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
</parent>
<dependencies>
......
......@@ -10,7 +10,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
</parent>
<properties>
......
......@@ -9,7 +9,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
</parent>
<properties>
......
......@@ -10,7 +10,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
</parent>
<build>
......
......@@ -11,7 +11,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
</parent>
<properties>
......
......@@ -10,7 +10,7 @@
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
</parent>
<build>
......
......@@ -8,7 +8,7 @@
<artifactId>activiti-root</artifactId>
<packaging>pom</packaging>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring.framework.version>3.1.2.RELEASE</spring.framework.version>
......
......@@ -4,7 +4,7 @@
<property file="${user.home}/.activiti/build.properties" />
<property file="../distro/src/setup/build.properties" />
<property name="activiti.version" value="5.14" />
<property name="activiti.version" value="5.15-SNAPSHOT" />
<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" />
......
......@@ -8,7 +8,7 @@
<artifactId>activiti-dbclean</artifactId>
<packaging>pom</packaging>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
<dependencies>
<dependency>
......
......@@ -2,7 +2,7 @@
<project name="activiti.qa.upgrade" default="upgrade">
<property file="${user.home}/.activiti/build.properties" />
<property name="activiti.version" value="5.14" />
<property name="activiti.version" value="5.15-SNAPSHOT" />
<property name="database" value="h2" />
<property name="activiti.old.version" value="5.0" />
<property name="downloads.dir" value="${user.home}/.activiti/downloads" />
......
......@@ -6,13 +6,13 @@
<name>Activiti - Upgrade Fetcher</name>
<groupId>org.activiti</groupId>
<artifactId>activiti-upgrade-fetcher</artifactId>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
<parent>
<groupId>org.activiti</groupId>
<artifactId>activiti-root</artifactId>
<relativePath>../..</relativePath>
<version>5.14</version>
<version>5.15-SNAPSHOT</version>
</parent>
<dependencies>
......
......@@ -9438,8 +9438,8 @@ Only the attachment name is required to create a new attachment.
<programlisting>
{
"next.dbid":"101",
"schema.history":"create(5.14)",
"schema.version":"5.14"
"schema.history":"create(5.15-SNAPSHOT)",
"schema.version":"5.15-SNAPSHOT"
}</programlisting>
<table>
<title>Get engine properties - Response codes</title>
......@@ -9473,7 +9473,7 @@ Only the attachment name is required to create a new attachment.
<programlisting>
{
"name":"default",
"version":"5.14",
"version":"5.15-SNAPSHOT",
"resourceUrl":"file://activiti/activiti.cfg.xml",
"exception":null
}</programlisting>
......@@ -11128,7 +11128,7 @@ Only the attachment name is required to create a new attachment.
<section>
<title>Legacy REST - General Usage</title>
<para><emphasis role="bold">The folowing section contains documentation of the Legacy REST-api, which has been deprecated since the 5.14 release. The REST-urls will not be removed in the future but will not be maintained. Any future additions and improvements will be done to the new REST API.</emphasis></para>
<para><emphasis role="bold">The folowing section contains documentation of the Legacy REST-api, which has been deprecated since the 5.15-SNAPSHOT release. The REST-urls will not be removed in the future but will not be maintained. Any future additions and improvements will be done to the new REST API.</emphasis></para>
<para>
Activiti includes a REST API to the Activiti Engine that can be installed by deploying the activiti-rest.war file to a servlet container like Apache Tomcat.
By default the Activiti Engine will connect to a standalone H2 database. You can change the database settings in the db.properties file in the WEB-INF/classes folder.
......
......@@ -6,13 +6,13 @@
<para>
Companies often already have a user and group store in the form of an LDAP system.
Since version 5.14, Activiti offers an out-of-the-box solution for easily configuring
Since version 5.15-SNAPSHOT, Activiti offers an out-of-the-box solution for easily configuring
how Activiti should connect with an LDAP system.
</para>
<para>
Before Activiti 5.14, it was already possible to integrate LDAP with Activiti.
However, as of 5.14, the configuration has been simplified a lot. However, the 'old' way
Before Activiti 5.15-SNAPSHOT, it was already possible to integrate LDAP with Activiti.
However, as of 5.15-SNAPSHOT, the configuration has been simplified a lot. However, the 'old' way
of configuring LDAP still works. More specifically, the simplified configuration is
just a wrapper on top of the 'old' infrastructure.
</para>
......
......@@ -22,7 +22,7 @@
<book>
<bookinfo><title>Activiti 5.14 User Guide</title></bookinfo>
<bookinfo><title>Activiti 5.15-SNAPSHOT User Guide</title></bookinfo>
<toc />
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册