ext {
release = project.hasProperty('release') && project.getProperty('release')
official = project.hasProperty('official') && project.getProperty('official')
- withTestMonitoring = project.hasProperty('withTestMonitoring')
+ testMonitoringEnabled = project.hasProperty('withTestMonitoring')
}
ext.enableBom = enableBom
}
}
- if (ext.withTestMonitoring) {
+ if (ext.testMonitoringEnabled) {
tasks.withType(Test) {
doFirst {
ext {
testImplementation 'org.assertj:assertj-core'
testImplementation 'org.mockito:mockito-core'
+ testImplementation 'org.aspectj:aspectjweaver:1.9.20.1'
}
tasks.withType(JavaCompile) {