Update build.gradle

This commit is contained in:
Laurent
2024-10-22 11:29:53 +02:00
parent e496383d25
commit f0e4401393

View File

@@ -4,8 +4,12 @@ plugins {
id 'io.spring.dependency-management' version '1.1.6'
}
springBoot {
mainClass = 'be.naaturel.homestorage.HomeStorageApplication'
}
group = 'be.naaturel'
version = '0.0.1-SNAPSHOT'
version = '1.0.0'
java {
toolchain {
@@ -18,11 +22,18 @@ repositories {
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'jakarta.validation:jakarta.validation-api:3.0.2'
implementation 'org.hibernate.validator:hibernate-validator:8.0.0.Final'
implementation group: 'mysql', name: 'mysql-connector-java', version: '8.0.28'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
tasks.named('test') {
useJUnitPlatform()
}
}