34 lines
701 B
Groovy
34 lines
701 B
Groovy
sonar {
|
|
properties {
|
|
property 'sonar.projectName', "${projectTitle} :: Testing Harness"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// please keep list ordered
|
|
|
|
api 'com.google.code.gson:gson'
|
|
api 'com.googlecode.json-simple:json-simple'
|
|
api 'jakarta.mail:jakarta.mail-api'
|
|
api 'commons-io:commons-io'
|
|
api 'junit:junit'
|
|
api 'org.assertj:assertj-core'
|
|
api 'org.jsoup:jsoup'
|
|
api 'org.mockito:mockito-core'
|
|
|
|
compileOnlyApi 'com.github.spotbugs:spotbugs-annotations'
|
|
}
|
|
|
|
artifactoryPublish.skip = !deployCommunity
|
|
publishing {
|
|
publications {
|
|
mavenJava(MavenPublication) {
|
|
from components.java
|
|
if (release) {
|
|
artifact sourcesJar
|
|
artifact javadocJar
|
|
}
|
|
}
|
|
}
|
|
}
|