Refactor all samples to use the build.GemFireServerPlugin Gradle Plugin.

This commit is contained in:
John Blum
2019-05-29 16:25:58 -07:00
parent b10ee66483
commit acd4d5b1a9
16 changed files with 46 additions and 152 deletions

View File

@@ -27,3 +27,9 @@ dependencies {
}
mainClassName = "sample.ServerConfig"
project.tasks.findByName("prepareAppServerForIntegrationTests")?.configure { task ->
project.tasks.findByName("gemfireServer")?.configure { gemfireServerTask ->
gemfireServerTask.mainClassName = this.mainClassName
}
}