I don't know of any reason why this wouldn't work this way (though it is interesting that you're going another level up to place those files). Try running your script in debug and seeing what it produces, if you're still stumped, paste the debug here (or a pastebin).
On Fri, Mar 19, 2010 at 22:17, phil swenson <[email protected]> wrote: > I had to override the classes directory to make gradle work with our > existing system. But when I did this, "gradle clean" doesn't delete > the classes dir. Any suggestions? > > here is the code: > > sourceSets { > main { > java { > srcDir '../src/java/core' > } > } > > test { > java { > srcDir '../src/java/test' > } > } > } > > sourceSets.main.classesDir = new File("../build/out/classes") > sourceSets.test.classesDir = new File("../build/out/classes") > > --------------------------------------------------------------------- > To unsubscribe from this list, please visit: > > http://xircles.codehaus.org/manage_email > > > -- Jason Porter Software Engineer Open Source Advocate PGP key id: 926CCFF5 PGP key available at: keyserver.net, pgp.mit.edu
