Skip to content

Commit

Permalink
Showing 46 changed files with 2,032 additions and 319 deletions.
12 changes: 11 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -32,8 +32,8 @@ val springDocOpenApiVersion = "2.7.0"
val openApiToolsVersion = "0.2.6"
val micrometerVersion = "1.4.1"
val postgresJdbcVersion = "42.7.4"

val bouncycastleVersion = "1.79"
val mapStructVersion = "1.6.3"

dependencies {
implementation("org.springframework.boot:spring-boot-starter")
@@ -58,10 +58,20 @@ dependencies {
compileOnly("org.projectlombok:lombok")
annotationProcessor("org.projectlombok:lombok")

/**
* Mapstruct
* https://mapstruct.org/
* mapstruct dependencies must always be placed after the lombok dependency
* or the generated mappers will return an empty object
**/
implementation("org.mapstruct:mapstruct:$mapStructVersion")
annotationProcessor("org.mapstruct:mapstruct-processor:$mapStructVersion")

// Testing
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.mockito:mockito-core")
testImplementation ("org.projectlombok:lombok")
testAnnotationProcessor("org.projectlombok:lombok")
testImplementation("com.h2database:h2")
}

2 changes: 2 additions & 0 deletions gradle.lockfile
Original file line number Diff line number Diff line change
@@ -60,6 +60,8 @@ org.atteo:evo-inflector:1.3=compileClasspath
org.bouncycastle:bcprov-jdk18on:1.79=compileClasspath
org.hibernate.orm:hibernate-core:6.6.4.Final=compileClasspath
org.jspecify:jspecify:1.0.0=compileClasspath
org.mapstruct:mapstruct-processor:1.6.3=compileClasspath
org.mapstruct:mapstruct:1.6.3=compileClasspath
org.openapitools:jackson-databind-nullable:0.2.6=compileClasspath
org.postgresql:postgresql:42.7.4=compileClasspath
org.projectlombok:lombok:1.18.36=compileClasspath
Loading

0 comments on commit 22bc862

Please sign in to comment.