Hi,
I have a java module that I am trying to build using gradle, It has some generated sources in a different folder that are needed only for compile. I have this in build.gradle
sourceSets {
main {
java {
srcDir '../../build-out/java'
}
}
}
But my jar now has all the compiled classes from build-out/java
How do i exclude them from the packaged jar.
Thanks