29 lines
922 B
Groovy
29 lines
922 B
Groovy
plugins {
|
|
id "org.springframework.boot" version "2.1.5.RELEASE"
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation project(':common')
|
|
implementation project(':buckpal-application')
|
|
implementation project(':adapters:buckpal-persistence')
|
|
implementation project(':adapters:buckpal-web')
|
|
implementation ('org.springframework.boot:spring-boot-starter-web')
|
|
|
|
testImplementation('org.springframework.boot:spring-boot-starter-test') {
|
|
exclude group: 'junit' // excluding junit 4
|
|
}
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.0.1'
|
|
testImplementation 'org.mockito:mockito-junit-jupiter:2.23.0'
|
|
testImplementation 'com.tngtech.archunit:archunit:0.9.3'
|
|
testImplementation 'de.adesso:junit-insights:1.1.0'
|
|
testImplementation 'org.junit.platform:junit-platform-launcher:1.4.2'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
systemProperty 'de.adesso.junitinsights.enabled', 'true'
|
|
}
|
|
|
|
|