You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 23, 2026. It is now read-only.
useJUnit {
include '**/EndToEndSuite.class'
}
doLast{killServer.execute()}
}
I can see that the server starts, the ready condition is met but the task stops there.
10:13:12.707 [main] INFO org.apache.catalina.startup.Catalina - Server startup in 24332 ms
C:\proyectos\tr2\tr2-web-test\build/apache-tomee/bin/catalina.bat run is ready.
Hi,
I'm using this plugin to start my tomee:
task startServer(type: SpawnProcessTask, dependsOn: 'assemble') {
doFirst{
copyDependencies.execute()
copyExploded.execute()
}
I'm using to setup some system tests:
task systemTest(type: Test) {
doFirst{startServer.execute()}
}
I can see that the server starts, the ready condition is met but the task stops there.
10:13:12.707 [main] INFO org.apache.catalina.startup.Catalina - Server startup in 24332 ms
C:\proyectos\tr2\tr2-web-test\build/apache-tomee/bin/catalina.bat run is ready.