2012-11-27 09:25:59 +08:00
|
|
|
import org.gradle.plugins.ide.eclipse.model.ProjectDependency
|
|
|
|
|
|
|
|
|
|
// SPR-10042
|
|
|
|
|
eclipse.classpath.file.whenMerged { classpath ->
|
2012-12-07 05:40:53 +08:00
|
|
|
def projectName = "spring-webmvc-tiles3"
|
2012-12-07 04:56:24 +08:00
|
|
|
classpath.entries.add(0, new ProjectDependency("/${projectName}", project(":${projectName}").path))
|
2012-11-27 09:25:59 +08:00
|
|
|
}
|