30 lines
754 B
Plaintext
30 lines
754 B
Plaintext
|
plugins {
|
||
|
java
|
||
|
id("org.springframework.boot") version "3.0.5"
|
||
|
id("io.spring.dependency-management") version "1.1.0"
|
||
|
}
|
||
|
|
||
|
group = "tk.antoine.roux"
|
||
|
version = "0.0.1-SNAPSHOT"
|
||
|
java.sourceCompatibility = JavaVersion.VERSION_17
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
extra["springCloudVersion"] = "2022.0.2"
|
||
|
|
||
|
|
||
|
dependencies {
|
||
|
implementation("org.springframework.cloud:spring-cloud-config-server")
|
||
|
implementation("org.springframework.cloud:spring-cloud-starter-config")
|
||
|
|
||
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
||
|
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.2")
|
||
|
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.2")
|
||
|
}
|
||
|
|
||
|
tasks.getByName<Test>("test") {
|
||
|
useJUnitPlatform()
|
||
|
}
|