Author: joshcanfield
Date: Wed Jun 22 01:06:03 2011
New Revision: 1138268
URL: http://svn.apache.org/viewvc?rev=1138268&view=rev
Log:
TAP5-116: Idea plugin used wrong java version. Regenerating idea project caused
duplicate modules
Modified:
tapestry/tapestry5/trunk/build.gradle
Modified: tapestry/tapestry5/trunk/build.gradle
URL:
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/build.gradle?rev=1138268&r1=1138267&r2=1138268&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/build.gradle (original)
+++ tapestry/tapestry5/trunk/build.gradle Wed Jun 22 01:06:03 2011
@@ -25,6 +25,13 @@ allprojects {
apply plugin: 'eclipse'
apply plugin: 'idea'
+ ideaProject {
+ javaVersion = 1.5
+ beforeConfigured { project ->
+ project.modulePaths.clear()
+ }
+ }
+
repositories {
mavenCentral()
@@ -247,4 +254,4 @@ task zippedJavadoc(type: Zip, dependsOn:
from javadocBuildDir.dir
into "apidocs"
-}
\ No newline at end of file
+}