Rename spring-statemachine-boot
- spring-statemachine-boot is now spring-statemachine-autoconfigure - Fixes #507
This commit is contained in:
@@ -189,8 +189,8 @@ project('spring-statemachine-core') {
|
||||
}
|
||||
}
|
||||
|
||||
project('spring-statemachine-boot') {
|
||||
description = "Spring State Machine Boot"
|
||||
project('spring-statemachine-autoconfigure') {
|
||||
description = "Spring State Machine Boot Autoconfigure"
|
||||
|
||||
dependencies {
|
||||
compile project(":spring-statemachine-core")
|
||||
@@ -453,7 +453,7 @@ project('spring-statemachine-bom') {
|
||||
project('spring-statemachine-starter') {
|
||||
description = "Spring Statemachine Starter"
|
||||
dependencies {
|
||||
compile project(":spring-statemachine-boot")
|
||||
compile project(":spring-statemachine-autoconfigure")
|
||||
compile "org.springframework.boot:spring-boot-starter"
|
||||
}
|
||||
|
||||
|
||||
@@ -62,7 +62,7 @@ framework.
|
||||
|spring-statemachine-uml
|
||||
|Support module for UI uml modeling with Eclipse Papyrus.
|
||||
|
||||
|spring-statemachine-boot
|
||||
|spring-statemachine-autoconfigure
|
||||
|Support module for `Spring Boot`.
|
||||
|
||||
|spring-statemachine-bom
|
||||
|
||||
@@ -1438,7 +1438,7 @@ with a machine configuration kept in a database. This sample is using
|
||||
embedded _H2_ database with a _H2 Console_ to ease playing with a
|
||||
database.
|
||||
|
||||
This sample uses `spring-statemachine-boot` which on default
|
||||
This sample uses `spring-statemachine-autoconfigure` which on default
|
||||
auto-configures repositories and entity classes needed for JPA.
|
||||
Thus only `@SpringBootApplication` is needed.
|
||||
|
||||
@@ -1504,7 +1504,7 @@ with persisting machine in a database. This sample is using
|
||||
embedded _H2_ database with a _H2 Console_ to ease playing with a
|
||||
database.
|
||||
|
||||
This sample uses `spring-statemachine-boot` which on default
|
||||
This sample uses `spring-statemachine-autoconfigure` which on default
|
||||
auto-configures repositories and entity classes needed for JPA.
|
||||
Thus only `@SpringBootApplication` is needed.
|
||||
|
||||
|
||||
@@ -1949,7 +1949,7 @@ Check sample <<statemachine-examples-datajpapersist>> for detailed usage.
|
||||
|
||||
[[sm-boot]]
|
||||
== Spring Boot Support
|
||||
Auto-configuration module `spring-statemachine-boot` contains all
|
||||
Auto-configuration module `spring-statemachine-autoconfigure` contains all
|
||||
integration logic with _Spring Boot_ providing functionality i.e. for
|
||||
auto-config and actuators. All what is needed is to have _State
|
||||
Machine_ as part of a boot application together with this library.
|
||||
|
||||
@@ -54,4 +54,5 @@ _Spring Statemachine 2.0_ is focusing on _Spring Boot 2.x_ support.
|
||||
=== In 2.0.0
|
||||
|
||||
* Format of monitoring and trancing has beenn changed <<sm-boot-monitoring>>
|
||||
* Module `spring-statemachine-boot` has been renamed to `spring-statemachine-autoconfigure`
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ include 'spring-statemachine-cluster'
|
||||
include 'spring-statemachine-uml'
|
||||
include 'spring-statemachine-build-tests'
|
||||
include 'spring-statemachine-recipes'
|
||||
include 'spring-statemachine-boot'
|
||||
include 'spring-statemachine-autoconfigure'
|
||||
include 'spring-statemachine-bom'
|
||||
include 'spring-statemachine-starter'
|
||||
|
||||
|
||||
@@ -117,7 +117,7 @@ project('spring-statemachine-samples-ordershipping') {
|
||||
project('spring-statemachine-samples-datajpa') {
|
||||
description = 'Spring State Machine Data Jpa Sample'
|
||||
dependencies {
|
||||
compile project(":spring-statemachine-boot")
|
||||
compile project(":spring-statemachine-autoconfigure")
|
||||
compile project(":spring-statemachine-data-common:spring-statemachine-data-jpa")
|
||||
compile("org.springframework.boot:spring-boot-starter-web")
|
||||
compile("org.springframework.boot:spring-boot-starter-thymeleaf")
|
||||
@@ -130,7 +130,7 @@ project('spring-statemachine-samples-datajpa') {
|
||||
project('spring-statemachine-samples-datajpapersist') {
|
||||
description = 'Spring State Machine Data Jpa Persist Sample'
|
||||
dependencies {
|
||||
compile project(":spring-statemachine-boot")
|
||||
compile project(":spring-statemachine-autoconfigure")
|
||||
compile project(":spring-statemachine-data-common:spring-statemachine-data-jpa")
|
||||
compile("org.springframework.boot:spring-boot-starter-web")
|
||||
compile("org.springframework.boot:spring-boot-starter-thymeleaf")
|
||||
@@ -143,7 +143,7 @@ project('spring-statemachine-samples-datajpapersist') {
|
||||
project('spring-statemachine-samples-monitoring') {
|
||||
description = 'Spring State Machine Monitoring Sample'
|
||||
dependencies {
|
||||
compile project(":spring-statemachine-boot")
|
||||
compile project(":spring-statemachine-autoconfigure")
|
||||
compile("org.springframework.boot:spring-boot-starter-actuator")
|
||||
compile("org.springframework.boot:spring-boot-starter-web")
|
||||
compile("org.springframework.boot:spring-boot-starter-thymeleaf")
|
||||
|
||||
Reference in New Issue
Block a user