Hi,

I'm currently upgrading our build from using gradle milestone-3 to
milestone-8a.  Everything is working well except one issue.  We have a
multi-project build that starts up and shuts down jetty a couple of times.
 This works fine in milestone 3 but with 8a it appears that it's failing to
stop jetty and next subproject to start it up fails because the address is
already in use.

We start up and stop using something like this:

test.doFirst {
    project(':projectname').tasks.jettyRun.execute();
}
test.doLast {
    project(':projectname').tasks.jettyStop.execute();
}


And we set the ports and stop keys with the following:

[jettyRun, jettyRunWar, jettyStop]*.httpPort = 8075
[jettyRun, jettyRunWar, jettyStop]*.stopPort = 8089
[jettyRun, jettyRunWar, jettyStop]*.stopKey = 'stopKey'

Has anything changed in m8 that would effect the way I'm supposed to stop
jetty?


Regards,

Glen Stampoultzis

Reply via email to