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