Use synchronized Wildfly shutdown

We need to use the variant of shutdown that blocks until the connection
to Wildfly is closed or we can get spurious build failures.
This commit is contained in:
Jason Tedor 2017-06-12 21:35:56 -04:00
parent a0f50e8aa4
commit 99262e26a0
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ final String wildflyInstall = "${buildDir}/wildfly/wildfly-${wildflyVersion}"
final int portOffset = 30000
final int managementPort = 9990 + portOffset
// we skip these tests on Windows so we do not need to worry about compatibility here
final String stopWildflyCommand = "${wildflyInstall}/bin/jboss-cli.sh --controller=localhost:${managementPort} --connect command=:shutdown"
final String stopWildflyCommand = "${wildflyInstall}/bin/jboss-cli.sh --controller=localhost:${managementPort} --connect command=shutdown"
repositories {
mavenCentral()