Skip to content

Commit

Permalink
Update docs for OSS 7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
tijsrademakers committed Sep 20, 2023
1 parent 39d2fc0 commit ae5e19f
Show file tree
Hide file tree
Showing 20 changed files with 67 additions and 1,096 deletions.
12 changes: 6 additions & 6 deletions docs/docusaurus/docs/bpmn/ch02-GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The various tutorials below start by introducing how to set up and use this core

- The [section on the Flowable REST API](#getting-started-with-the-flowable-rest-api) shows how to run and use the same API through REST.

- The [section on the Flowable REST App](ch14-Applications.md), will guide you through the basics of using the out-of-the-box example Flowable REST application.
- The [section on the Flowable REST App](ch13-Applications.md), will guide you through the basics of using the out-of-the-box example Flowable REST application.

## Flowable and Activiti

Expand Down Expand Up @@ -66,12 +66,12 @@ Add the following to your *pom.xml* file:
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-engine</artifactId>
<version>6.6.0</version>
<version>7.0.0</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.3.176</version>
<version>2.1.214</version>
</dependency>
</dependencies>

Expand Down Expand Up @@ -137,12 +137,12 @@ Flowable uses [SLF4J](http://www.slf4j.org/) as its logging framework internally
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.30</version>
<version>2.0.7</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.30</version>
<version>2.0.7</version>
</dependency>

Log4j needs a properties file for configuration. Add a *log4j.properties* file to the *src/main/resources* folder with the following content:
Expand Down Expand Up @@ -446,7 +446,7 @@ This section shows the same example as the [previous section](#building-a-comman

This time, the Flowable REST API is used rather than the Java API. You’ll soon notice that the REST API closely matches the Java API, and knowing one automatically means that you can find your way around the other.

To get a full, detailed overview of the Flowable REST API, check out the [REST API chapter](bpmn/ch15-REST.md#rest-api).
To get a full, detailed overview of the Flowable REST API, check out the [REST API chapter](bpmn/ch14-REST.md#rest-api).

### Setting up the REST application

Expand Down
4 changes: 2 additions & 2 deletions docs/docusaurus/docs/bpmn/ch03-Configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -370,14 +370,14 @@ Configuring a mail server is optional. Flowable supports sending e-mails in busi

## History configuration

Customizing the configuration of history storage is optional. This allows you to tweak settings that influence the [history capabilities](bpmn/ch11-History.md#history) of the engine. See [history configuration](bpmn/ch11-History.md#history-configuration) for more details.
Customizing the configuration of history storage is optional. This allows you to tweak settings that influence the [history capabilities](bpmn/ch10-History.md#history) of the engine. See [history configuration](bpmn/ch10-History.md#history-configuration) for more details.

<property name="history" value="audit" />

## Async history configuration

\[Experimental\] Since Flowable 6.1.0 the async history feature has been added. When async history is enabled, the historic data will be persisted by a history job executor, instead of synchronous persistence as part of the runtime execution persistence.
See [async history configuration](bpmn/ch11-History.md#async-history-configuration) for more details.
See [async history configuration](bpmn/ch10-History.md#async-history-configuration) for more details.

<property name="asyncHistoryEnabled" value="true" />

Expand Down
3 changes: 1 addition & 2 deletions docs/docusaurus/docs/bpmn/ch05a-Spring-Boot.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ The Spring Boot - Flowable integration has been developed together with Spring c

## Compatibility

Flowable supports both Spring Boot 2.0 and 1.5 with the same starters. The base support is for Spring Boot 2.0, which means that the actuator endpoints are only supported on 2.0.
The Flowable starters are also puling spring boot starter transitively, which means that users will have to define the 1.5 version of the spring boot starters in their own build files.
Flowable supports Spring Boot 3.x.

## Getting started

Expand Down
206 changes: 0 additions & 206 deletions docs/docusaurus/docs/bpmn/ch08-Forms.md

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
id: ch09-ProcessInstanceMigration
id: ch08-ProcessInstanceMigration
title: Process Instance Migration
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
id: ch10-JPA
id: ch09-JPA
title: JPA
---

Expand Down
Loading

0 comments on commit ae5e19f

Please sign in to comment.