From 95d0e0805961c0267435517f18ecb77677c6520a Mon Sep 17 00:00:00 2001 From: Rob Winch Date: Tue, 2 Oct 2012 12:05:18 -0500 Subject: [PATCH] Eclipse Project names include 3.0.x suffix --- gradle/ide-integration.gradle | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/gradle/ide-integration.gradle b/gradle/ide-integration.gradle index aa1821b535..5672927458 100644 --- a/gradle/ide-integration.gradle +++ b/gradle/ide-integration.gradle @@ -1,8 +1,11 @@ -apply plugin: 'idea' - -configure(javaProjects) { +configure(allprojects) { + apply plugin: 'idea' apply plugin: 'eclipse-wtp' + eclipse.project.name = "${project.name}-3.0.x" +} + +configure(javaProjects) { eclipse.classpath.downloadSources = true // GRADLE-1116