26 lines
No EOL
640 B
Groovy
26 lines
No EOL
640 B
Groovy
// ------------------------------------
|
|
// Hal core configuration
|
|
// ------------------------------------
|
|
|
|
dependencies {
|
|
implementation 'org.xerial:sqlite-jdbc:3.42.0.1'
|
|
implementation 'org.shredzone.acme4j:acme4j-client:2.12'
|
|
implementation 'org.shredzone.acme4j:acme4j-utils:2.12'
|
|
}
|
|
|
|
// Make test classes available to other projects
|
|
|
|
configurations {
|
|
testClasses {
|
|
extendsFrom(testImplementation)
|
|
}
|
|
}
|
|
|
|
task testJar(type: Jar) {
|
|
archiveClassifier.set('test')
|
|
from sourceSets.test.output
|
|
}
|
|
|
|
artifacts {
|
|
testClasses testJar // add the jar generated by the testJar task to the testClasses dependency
|
|
} |