mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-05-03 03:43:54 +01:00
1e33e6bc0d
Closes gh-42714
24 lines
452 B
Groovy
24 lines
452 B
Groovy
plugins {
|
|
id "java"
|
|
id "org.springframework.boot"
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = '17'
|
|
targetCompatibility = '17'
|
|
}
|
|
|
|
repositories {
|
|
maven { url "file:${rootDir}/../docker-test-maven-repository"}
|
|
mavenCentral()
|
|
spring.mavenRepositories()
|
|
}
|
|
|
|
dependencies {
|
|
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
|
|
implementation("org.apache.tomcat.embed:tomcat-embed-core")
|
|
}
|
|
|
|
bootJar {
|
|
launchScript()
|
|
} |