2009/2/5 Marco Hunsicker <[email protected]> > Hello Tom, > > there is a shortcut function to enable the compile debugging: >> >> allprojects { >> usePlugin('java') >> >> compile { >> destinationDir = new File($rootDir, 'tmp/build/classes') >> sourceCompatibility = 1.4 >> targetCompatibility = 1.4 >> options.bootClasspath = bootClasspath >> options.deprecation = true >> options.debug(debugLevel : 'lines,source') >> } >> > > Aha, this way it makes perfect sense. Thanks very much for guiding me in > the right direction. Gradle looks very promising, though it seems I have a > long way to go until I fully understand syntax and concepts. I will probably > show up with more questions in the future ;)
Don't forget to check out the examples they provide a good starting point for working build.gradle files (we use them for our integration tests). > > > -- > Cheers, > Marco > > > --------------------------------------------------------------------- > To unsubscribe from this list, please visit: > > http://xircles.codehaus.org/manage_email > > >
