brainslug root pom

brainslug is a control flow abstraction and workflow library

Лицензия

Лицензия

Группа

Группа

de.androbit
Идентификатор

Идентификатор

brainslug
Последняя версия

Последняя версия

0.21
Дата

Дата

Тип

Тип

pom
Описание

Описание

brainslug root pom
brainslug is a control flow abstraction and workflow library
Ссылка на сайт

Ссылка на сайт

http://github.com/adrobisch/brainslug
Система контроля версий

Система контроля версий

http://github.com/adrobisch/brainslug

Скачать brainslug

Имя Файла Размер
brainslug-0.21.pom 6 KB
Обзор

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/de.androbit/brainslug/ -->
<dependency>
    <groupId>de.androbit</groupId>
    <artifactId>brainslug</artifactId>
    <version>0.21</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/de.androbit/brainslug/
implementation 'de.androbit:brainslug:0.21'
// https://jarcasting.com/artifacts/de.androbit/brainslug/
implementation ("de.androbit:brainslug:0.21")
'de.androbit:brainslug:pom:0.21'
<dependency org="de.androbit" name="brainslug" rev="0.21">
  <artifact name="brainslug" type="pom" />
</dependency>
@Grapes(
@Grab(group='de.androbit', module='brainslug', version='0.21')
)
libraryDependencies += "de.androbit" % "brainslug" % "0.21"
[de.androbit/brainslug "0.21"]

Зависимости

compile (2)

Идентификатор библиотеки Тип Версия
org.slf4j : slf4j-api jar 1.7.6
ch.qos.logback : logback-classic Необязательный jar 1.1.1

test (3)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.11
org.assertj : assertj-core jar 1.6.0
org.mockito : mockito-all jar 1.9.5

Модули Проекта

  • core
  • model
  • execution
  • bpmn
  • juel
  • renderer
  • quartz
  • jpa
  • spring
  • maven-renderer
  • maven-bpmn
  • docs
  • examples/maven-plugin

brainslug

brainslug

brainslug is a control flow abstraction library. It enables you to model your application flow as a graph of typed nodes, which can be transformed to different representations or be executed within a customisable environment.

Maven Central

Download

The current version is available in the maven central repository

Hello World

FlowDefinition helloWorldFlow = new FlowBuilder() {
  @Override
  public void define() {
    flowId(id("helloFlow"));

    start(id("start")).execute(task(id("helloTask"), new SimpleTask() {
      @Override
      public void execute(ExecutionContext context) {
        System.out.println("Hello World!");
      }
    }));
  }
}.getDefinition();

//  create brainslug context with defaults
BrainslugContext context = new BrainslugContextBuilder().build();
context.addFlowDefinition(helloWorldFlow);

context.startFlow(helloWorldFlow.getId(), IdUtil.id("start"));

Rendered as:

hello_flow

Documentation

Check the project Github Pages for examples and documentation.

Versioning

Starting with version 1.0.0, brainslug will follow semantic versioning. During the 0.x releases, the minor (.x) releases may include breaking changes.

License

brainslug is published under the terms of the Apache 2.0 License. See the LICENSE file.

Версии библиотеки

Версия
0.21
0.20
0.19
0.18
0.17
0.16
0.15
0.14
0.13
0.12
0.11
0.9
0.8
0.7
0.6