conductor-oss--conductor
a9cd7750f4
CI / unit-test (push) Has been cancelled
CI / detect-changes (push) Has been cancelled
CI / build (push) Has been cancelled
Publish docs via GitHub Pages / Deploy docs (push) Has been cancelled
CI / test-harness (push) Has been cancelled
CI / generate-e2e-matrix (push) Has been cancelled
CI / e2e (push) Has been cancelled
CI / build-ui (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
UI v2 Integration CI / E2E (Integration) (push) Has been cancelled
UI v2 CI / Lint, Format & Test (push) Has been cancelled
UI v2 CI / E2E (Mocked) (push) Has been cancelled
42 行
1.6 KiB
Groovy
42 行
1.6 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id 'java-test-fixtures'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':conductor-common')
|
|
implementation project(':conductor-core')
|
|
|
|
implementation 'org.springframework.retry:spring-retry'
|
|
implementation 'org.springframework.security:spring-security-core'
|
|
implementation "org.apache.commons:commons-lang3"
|
|
|
|
implementation "io.micrometer:micrometer-core:${revMicrometer}"
|
|
implementation 'com.zaxxer:HikariCP:5.1.0'
|
|
implementation "com.google.guava:guava:${revGuava}"
|
|
|
|
compileOnly 'org.springframework.boot:spring-boot-starter'
|
|
compileOnly 'org.springframework.boot:spring-boot-starter-jdbc'
|
|
compileOnly 'org.springframework.boot:spring-boot-starter-validation'
|
|
compileOnly 'org.springframework.boot:spring-boot-starter-web'
|
|
compileOnly "org.springdoc:springdoc-openapi-starter-webmvc-ui:${revSpringDoc}"
|
|
|
|
|
|
testImplementation 'org.hamcrest:hamcrest'
|
|
testImplementation "org.awaitility:awaitility:3.1.6"
|
|
|
|
testFixturesImplementation project(':conductor-common')
|
|
testFixturesImplementation project(':conductor-core')
|
|
testFixturesImplementation 'junit:junit'
|
|
testFixturesImplementation 'org.assertj:assertj-core'
|
|
testFixturesImplementation 'org.mockito:mockito-core'
|
|
testFixturesImplementation 'org.springframework.boot:spring-boot-test-autoconfigure'
|
|
testFixturesImplementation 'org.springframework.boot:spring-boot-autoconfigure'
|
|
testFixturesImplementation 'org.springframework.retry:spring-retry'
|
|
testFixturesImplementation "com.fasterxml.jackson.core:jackson-databind"
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|