> *) Clean checkout, executing "gradle idea" fails, with some minus-set
> operator being null or something. Doing "gradle install" first lets the
> next"gradle idea" do its magic successfully.

That's my bad. I wanted build/generated-sources not be excluded.

ideaModule.doFirst {
  excludeDirs -= buildDir

  def generatedDir = file("$buildDir/generated-sources")

  def buildMinusGeneratedDir = (buildDir.listFiles() - generatedDir)
as Set<File>

  excludeDirs += buildMinusGeneratedDir
}

Apparently since the build directory isn't created yet it's failing. I
suppose the XML generated could be tweaked instead....



On Wed, Jun 29, 2011 at 3:20 PM, Chris Poulsen <mailingl...@nesluop.dk> wrote:
> Hi,

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tapestry.apache.org
For additional commands, e-mail: dev-h...@tapestry.apache.org

Reply via email to