mirror of
https://gitee.com/dcren/initializr.git
synced 2026-02-25 21:22:58 +08:00
27 lines
499 B
Plaintext
27 lines
499 B
Plaintext
plugins {
|
|
java
|
|
id("org.springframework.boot") version "2.4.0-M1"
|
|
id("io.spring.dependency-management") version "1.0.6.RELEASE"
|
|
}
|
|
|
|
group = "com.example"
|
|
version = "0.0.1-SNAPSHOT"
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url = uri("https://repo.spring.io/milestone") }
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.acme:foo")
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
}
|
|
|
|
tasks.withType<Test> {
|
|
useJUnitPlatform()
|
|
}
|