Introduced MQTT detectors to autodetect MQTT devices
This commit is contained in:
parent
e4707c2493
commit
b7ee6b16dc
21 changed files with 714 additions and 108 deletions
|
|
@ -7,3 +7,20 @@ dependencies {
|
|||
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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue