2022-08-08 07:08:34 -04:00
|
|
|
plugins {
|
|
|
|
id("org.springframework.boot") version "2.7.2"
|
|
|
|
id("io.spring.dependency-management") version "1.0.11.RELEASE"
|
|
|
|
id("java")
|
|
|
|
}
|
|
|
|
|
|
|
|
group = "com.baeldung.gradle"
|
|
|
|
version = "0.0.1-SNAPSHOT"
|
2024-01-15 13:57:48 -05:00
|
|
|
sourceCompatibility = "1.8"
|
|
|
|
targetCompatibility = "1.8"
|
2022-08-08 07:08:34 -04:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter:2.7.2")
|
|
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test:2.7.2")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.getByName<Test>("test") {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|