The TestDiscoverService app covers the API for service discover. The TestAdvertiseService app covers the APT for service advertisement. Test: ./gradlew build Change-Id: I6a8d94bbe88a9a20b1adcda8e0916898c68e7ea5
18 lines
385 B
Groovy
18 lines
385 B
Groovy
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
rootProject.name = "TestAdvertiseService"
|
|
include ':testadvertiseservice'
|
|
include ':testdiscoverservice'
|