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/snapshot" }
|
|
|
|
maven { url "https://repo.spring.io/milestone" }
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2020-01-23 06:09:17 +08:00
|
|
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bootJar {
|
|
|
|
launchScript()
|
|
|
|
}
|