On 22/03/2011, at 8:42 AM, phil swenson wrote: > 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?
The idea plugin only adds 'ideaProject' when it is applied to the root project. For all other projects, it only adds 'ideaModule'. -- Adam Murdoch Gradle Developer http://www.gradle.org Co-Founder and VP of Engineering, Gradleware Inc. - Gradle Training, Support, Consulting http://www.gradleware.com
