Backport 'Support import into Eclipse 2022-06'

Backport `spring-boot-cli` gradle fix from d4ed2bd4 to allow clean
import into Eclipse 2022-06 and above.
This commit is contained in:
Phillip Webb 2023-04-09 17:19:39 -07:00
parent e912c1b2b8
commit b5cf3e0a1a

View File

@ -1,5 +1,6 @@
plugins {
id "java"
id "eclipse"
id "org.springframework.boot.deployed"
id "org.springframework.boot.conventions"
id "org.springframework.boot.integration-test"
@ -11,10 +12,12 @@ configurations {
dependenciesBom
loader
testRepository
compileOnlyProject
compileClasspath.extendsFrom(compileOnlyProject)
}
dependencies {
compileOnly(project(":spring-boot-project:spring-boot"))
compileOnlyProject(project(":spring-boot-project:spring-boot"))
compileOnly("jakarta.servlet:jakarta.servlet-api")
compileOnly("org.codehaus.groovy:groovy-templates")
compileOnly("org.springframework:spring-web")
@ -185,3 +188,6 @@ publishing {
}
}
eclipse.classpath { // https://github.com/eclipse/buildship/issues/939
plusConfigurations += [ configurations.compileOnlyProject ]
}