Adding API project structure

This commit is contained in:
Laurent
2025-03-11 11:46:07 +01:00
parent d379d7c1ca
commit 0c5a6957ab
12 changed files with 458 additions and 9 deletions

28
back/build.gradle Normal file
View File

@@ -0,0 +1,28 @@
plugins {
id 'java'
id 'org.springframework.boot' version '3.4.3'
id 'io.spring.dependency-management' version '1.1.7'
}
group = 'be.naaturel'
version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
tasks.named('test') {
useJUnitPlatform()
}