Update build.gradle
This commit is contained in:
@@ -4,8 +4,12 @@ plugins {
|
|||||||
id 'io.spring.dependency-management' version '1.1.6'
|
id 'io.spring.dependency-management' version '1.1.6'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
springBoot {
|
||||||
|
mainClass = 'be.naaturel.homestorage.HomeStorageApplication'
|
||||||
|
}
|
||||||
|
|
||||||
group = 'be.naaturel'
|
group = 'be.naaturel'
|
||||||
version = '0.0.1-SNAPSHOT'
|
version = '1.0.0'
|
||||||
|
|
||||||
java {
|
java {
|
||||||
toolchain {
|
toolchain {
|
||||||
@@ -18,7 +22,14 @@ repositories {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
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'
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
||||||
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user