Hi, I'm setting buildDirName = 'myBuildDir' in my build.gradle file for the project. When I build things are still getting put in build/... instead of myBuildDir. When I run gradle properties, I can see the buildDirName is indeed set to myBuildDir, but it's not being used in any of the other directory properties - they're all still based off of the default 'build' directory, and the buildDir itself is still <project root path>/build instead of <project root path>/myBuildDir.
In my gradle.build file the "buildDirName = 'myBuildDir'" line is the first non-comment line after the "apply plugin: 'java'" line, which is the very first line in the file. Am I doing something wrong? Thanks, Jeff
