I am an experienced Java developer and Maven user, and I am evaluating Gradle
for a possible transition. So far I have my multi-module project building
nicely and quite cleanly, but when I run "gradle test," Gradle isn't finding
any of my test classes. My layout follows the Maven, and I thought Gradle,
conventions precisely:
--myproj
----build.gradle
----src
----main
----java
----resources
----test
----java
---------------Test source all here
----resources
After studying the manual, I figured that the testing sourceSet defaulted to
what I have above, but perhaps I was wrong. Any insight into whatever silly
thing I have misconfigured is appreciated.
Thanks.