Posts

Showing posts with the label classpath

Gradle sets incorrect (unexpected?) classpath on running task

Image
Clash Royale CLAN TAG #URR8PPP Gradle sets incorrect (unexpected?) classpath on running task I have my project structured in this way: projectRoot +-src +-main | +-java | | +-package/java files go here | +-resources | +-config | +-files go here +-test +-java | +-package/java files go here +-resources +-config | +-files go here +-features +-files go here When this project is built, it produces the following output structure: projectRoot +-out +-production | +-classes | | +-package/classes in here | +-resources | +-config | +-files in here +-test +-classes | +-package/classes in here +-resources +-config | +-files in here +-features +-files in here This is all...