I'm trying to build the IDEA project/module files for a gradle project. It's not building the .ipr file, it's only generating .iml files.
According to the doc on the Idea plugin there should be tasks for "idea, cleanIdea, cleanIdeaProject, etc" I type "gradle -t" and I get for the IDE tasks: IDE tasks --------- cleanEclipse - Cleans all Eclipse files. cleanIdea - Cleans IDEA project files (IML, IPR) eclipse - Generates all Eclipse files. idea - Generates IDEA project files (IML, IPR, IWS) I tried "gradle ideaProject" and get: Task 'ideaProject' not found gradle idea executes fine, but it just doesn't create .ipr files. I am using gradle version Gradle 1.0-milestone-2-20110317112014-0600 ideas?
