baser du projet

This commit is contained in:
mepiphana2023
2024-04-22 11:14:29 +02:00
parent f5a6056126
commit 45d4473b33
10 changed files with 439 additions and 0 deletions

26
build.gradle Normal file
View File

@@ -0,0 +1,26 @@
plugins {
id 'java'
id 'org.springframework.boot' version '3.2.5'
id 'io.spring.dependency-management' version '1.1.4'
}
group = 'fr.eni'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
tasks.named('test') {
useJUnitPlatform()
}