java - How to run a class in the test package that is not junit or testNG with gradle -
our build setup such have runnable classes executed during our development , not during live production code. these runnable classes housed in test directory our junit tests , property files.
sourcesets { ... test { java.srcdirs = ['src/test/java'] } ... }
one such file embedded jetty web server, run command line. run file in debug mode boot local runnable copy of project. possible run file, in debug mode- gradle, without having include in main source sets?
we prefer not use jetty plugin gradle.
Comments
Post a Comment