25 lines
1.1 KiB
Groovy
25 lines
1.1 KiB
Groovy
plugins {
|
|
id 'org.springframework.statemachine.module'
|
|
}
|
|
|
|
description = 'Spring State Machine Data MongoDB'
|
|
|
|
dependencies {
|
|
management platform(project(":spring-statemachine-platform"))
|
|
api project(':spring-statemachine-data-common')
|
|
api 'org.springframework.data:spring-data-mongodb'
|
|
testImplementation project(':spring-statemachine-test')
|
|
testImplementation(testFixtures(project(':spring-statemachine-data-common')))
|
|
testImplementation(testFixtures(project(':spring-statemachine-core')))
|
|
testImplementation 'io.projectreactor:reactor-test'
|
|
testImplementation 'org.springframework.boot:spring-boot-test'
|
|
testImplementation 'org.springframework.boot:spring-boot-test-autoconfigure'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-engine'
|
|
testImplementation 'org.junit.platform:junit-platform-launcher'
|
|
testRuntimeOnly('org.springframework.boot:spring-boot-starter-data-mongodb') {
|
|
exclude group: 'org.mongodb', module: 'mongodb-driver-sync'
|
|
}
|
|
testRuntimeOnly 'org.mongodb:mongodb-driver-sync'
|
|
testRuntimeOnly 'org.springframework.boot:spring-boot-starter-web'
|
|
}
|