Skip to content

Commit

Permalink
Update hibernate plugin usage to remove deprecated calls, remove init…
Browse files Browse the repository at this point in the history
… of logger
  • Loading branch information
agrancaric committed Oct 4, 2023
1 parent 5012a1f commit e834f7f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ tasks.named("test") {
bootBuildImage {
builder = "paketobuildpacks/builder:$buildImageVersion"
runImage = "agrancaric/nrich-run-native:$runImageVersion"
environment = ["BP_NATIVE_IMAGE": "true", "BP_NATIVE_IMAGE_BUILD_ARGUMENTS": "-H:+AddAllCharsets --initialize-at-build-time=org.apache.logging"]
environment = ["BP_NATIVE_IMAGE": "true", "BP_NATIVE_IMAGE_BUILD_ARGUMENTS": "-H:+AddAllCharsets"]
}

graalvmNative {
Expand All @@ -98,8 +98,8 @@ graalvmNative {

hibernate {
enhancement {
lazyInitialization true
dirtyTracking true
associationManagement true
enableLazyInitialization.set(true)
enableDirtyTracking.set(true)
enableAssociationManagement.set(true)
}
}

0 comments on commit e834f7f

Please sign in to comment.