Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideD committed Jul 29, 2024
1 parent 8813215 commit f564716
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,18 @@ org.gradle.java.installations.auto-download=false
#db = MSSQL

# Enable the SonatypeOS maven repository (mainly for Vert.x snapshots) when present (value ignored)
enableSonatypeOpenSourceSnapshotsRep = true
#enableSonatypeOpenSourceSnapshotsRep = true

# Enable the maven local repository (for local development when needed) when present (value ignored)
#enableMavenLocalRepo = true
enableMavenLocalRepo = true

# Override default Hibernate ORM version
hibernateOrmVersion = [6.5,6.6)
hibernateOrmVersion = 6.5.3-SNAPSHOT

# Override default Hibernate ORM Gradle plugin version
# Using the stable version because I don't know how to configure the build to download the snapshot version from
# a remote repository
#hibernateOrmGradlePluginVersion = 6.5.2.Final
hibernateOrmGradlePluginVersion = 6.5.2.Final

# If set to true, skip Hibernate ORM version parsing (default is true, if set to null)
# this is required when using intervals or weird versions or the build will fail
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,9 @@ public ReactiveToOneAttributeMapping copy(
TableGroupProducer declaringTableGroupProducer) {
return new ReactiveToOneAttributeMapping( super.copy( declaringType, declaringTableGroupProducer ) );
}

@Override
protected Object lazyInitialize(Object domainValue) {
return domainValue;
}
}

0 comments on commit f564716

Please sign in to comment.