mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
8 lines
276 B
Groovy
8 lines
276 B
Groovy
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))
|
|
}
|