Slackbot
10/12/2022, 2:47 PMmelix
10/12/2022, 2:54 PMrmoore
10/13/2022, 1:06 AMrmoore
10/13/2022, 1:28 AMrun
task I know of comes from Gradle’s built-in ‘application’ plugin, and it is a JavaExec
task, ie it runs java -jar <some jar>
to start a Java application locally. This out-of-the-box task works well with continuous build because it’s quite simple (it compiles java sources, packages them into a JAR, and then invokes the ‘java’ binary).Vignesh Rajasekaran
10/13/2022, 1:33 AMrun
task that I’m using is the one that comes with the application. The step of syncing code from my local into the container happens outside of gradle.Vignesh Rajasekaran
10/13/2022, 1:34 AMrmoore
10/13/2022, 1:49 AMVignesh Rajasekaran
10/13/2022, 8:01 AM