Update the depedencies and gradlew and cleaned code

This commit is contained in:
2025-03-03 16:05:30 +01:00
parent ab84002276
commit f220c187c1
14 changed files with 172 additions and 74 deletions
+28 -28
View File
@@ -3,15 +3,15 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'org.flywaydb:flyway-database-postgresql:11.3.2'
classpath 'org.postgresql:postgresql:42.7.5'
classpath 'org.flywaydb:flyway-database-postgresql:_'
classpath 'org.postgresql:postgresql:_'
}
}
plugins {
id 'java'
id 'org.springframework.boot' version '3.4.2'
id 'org.flywaydb.flyway' version "11.3.2"
id 'io.spring.dependency-management' version '1.1.7'
id 'org.springframework.boot'
id 'org.flywaydb.flyway'
id 'io.spring.dependency-management'
}
@@ -29,33 +29,33 @@ repositories {
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6:3.1.3.RELEASE'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework:spring-jdbc'
implementation 'org.flywaydb:flyway-core:11.3.2'
implementation 'org.flywaydb:flyway-database-postgresql:11.3.2'
implementation 'org.springframework.session:spring-session-jdbc'
implementation 'jakarta.validation:jakarta.validation-api:3.1.1'
runtimeOnly 'org.webjars:jquery:1.9.1'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
developmentOnly 'org.springframework.boot:spring-boot-docker-compose'
runtimeOnly 'org.postgresql:postgresql'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
implementation Spring.boot.data.jpa
implementation Spring.boot.jdbc
implementation Spring.boot.thymeleaf
implementation Spring.boot.security
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6:_'
implementation Spring.boot.web
implementation 'org.springframework:spring-jdbc:_'
implementation 'org.flywaydb:flyway-core:_'
implementation 'org.flywaydb:flyway-database-postgresql:_'
implementation Spring.session.jdbc
implementation 'jakarta.validation:jakarta.validation-api:_'
runtimeOnly 'org.webjars:jquery:_'
developmentOnly Spring.boot.devTools
developmentOnly 'org.springframework.boot:spring-boot-docker-compose:_'
runtimeOnly 'org.postgresql:postgresql:_'
testImplementation Spring.boot.test
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:_'
implementation 'com.fasterxml.jackson.core:jackson-databind'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-hibernate5:2.18.2'
implementation 'com.fasterxml.jackson.core:jackson-databind:_'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-hibernate5:_'
//Lombok
compileOnly 'org.projectlombok:lombok:1.18.36'
annotationProcessor 'org.projectlombok:lombok:1.18.36'
compileOnly 'org.projectlombok:lombok:_'
annotationProcessor 'org.projectlombok:lombok:_'
testCompileOnly 'org.projectlombok:lombok:1.18.36'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.36'
testCompileOnly 'org.projectlombok:lombok:_'
testAnnotationProcessor 'org.projectlombok:lombok:_'
}
flyway {