1
votes

Folks,

Thanks for the help , so currently I am building my automation in groovy + Spock+Geb and the current environment they are using windows server. So they have spun up a test server for me. My question is what is what is the norm out there when trying to get this on a server to run( NOT HEADLESS). Appeciate the help and advice, keep in mind they do not want any new techology stack introduce. I saw a few mentioned gradle just wondering the ease of use and running

1

1 Answers

0
votes

Gradle is definitely the way to go with this. With Gradle you can define various "tasks". these tasks might be different script executions or dependency downloads; its whatever you want them to be. Then from there you can execute these tasks from the command line on your windows server. Just call gradlew.bat <task1> <task2>....