30 lines
774 B
Plaintext
30 lines
774 B
Plaintext
|
plugins {
|
||
|
java
|
||
|
id("org.springframework.boot") version "3.1.5"
|
||
|
id("io.spring.dependency-management") version "1.1.3"
|
||
|
}
|
||
|
|
||
|
group = "ovh.herisson"
|
||
|
version = "0.0.1-SNAPSHOT"
|
||
|
|
||
|
java {
|
||
|
sourceCompatibility = JavaVersion.VERSION_21
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
// implementation("org.springframework.boot:spring-boot-starter-oauth2-authorization-server")
|
||
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
||
|
implementation("org.springframework.boot:spring-boot-starter-mail")
|
||
|
developmentOnly("org.springframework.boot:spring-boot-devtools")
|
||
|
runtimeOnly("org.postgresql:postgresql")
|
||
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
||
|
}
|
||
|
|
||
|
tasks.withType<Test> {
|
||
|
useJUnitPlatform()
|
||
|
}
|