Fix spring-test-mvc Eclipse classpath

This commit is contained in:
Rob Winch
2012-11-26 19:25:59 -06:00
committed by Chris Beams
parent 2ef99cdda1
commit e7b8cd58db
2 changed files with 13 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
import org.gradle.plugins.ide.eclipse.model.ProjectDependency
// SPR-10042
eclipse.classpath.file.whenMerged { classpath ->
def projectName = 'spring-webmvc-tiles3'
classpath.entries.add(0, new ProjectDependency("/${projectName}", project(":${projectName}").path))
}