2020-01-10 21:48:43 +08:00
|
|
|
plugins {
|
2020-01-23 03:24:37 +08:00
|
|
|
id "java"
|
|
|
|
id "org.springframework.boot"
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|
|
|
|
|
2020-01-23 03:24:37 +08:00
|
|
|
apply plugin: "io.spring.dependency-management"
|
2020-01-10 21:48:43 +08:00
|
|
|
|
|
|
|
repositories {
|
2020-01-22 10:33:33 +08:00
|
|
|
maven { url "file:${rootDir}/../int-test-maven-repository"}
|
2020-01-10 21:48:43 +08:00
|
|
|
mavenCentral()
|
2020-01-23 03:24:37 +08:00
|
|
|
maven { url "https://repo.spring.io/milestone" }
|
2020-07-30 00:36:11 +08:00
|
|
|
maven { url "https://repo.spring.io/snapshot" }
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-10-01 21:15:52 +08:00
|
|
|
implementation("org.apache.tomcat.embed:tomcat-embed-core")
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bootJar {
|
|
|
|
launchScript()
|
|
|
|
}
|