Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions documentation/documentation.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -139,29 +139,22 @@ dependencies {
core project( ':hibernate-core' )
javadocSources project( path: ':hibernate-core', configuration: 'javadocSources' )

testing project( ':hibernate-testing' )
javadocSources project( path: ':hibernate-testing', configuration: 'javadocSources' )

envers project( ':hibernate-envers' )
javadocSources project( path: ':hibernate-envers', configuration: 'javadocSources' )

testing project( ':hibernate-testing' )

spatial project( ':hibernate-spatial' )
javadocSources project( path: ':hibernate-spatial', configuration: 'javadocSources' )

agroal project( ':hibernate-agroal' )
javadocSources project( path: ':hibernate-agroal', configuration: 'javadocSources' )

c3p0 project( ':hibernate-c3p0' )
javadocSources project( path: ':hibernate-c3p0', configuration: 'javadocSources' )

hikaricp project( ':hibernate-hikaricp' )
javadocSources project( path: ':hibernate-hikaricp', configuration: 'javadocSources' )

jcache project( ':hibernate-jcache' )
javadocSources project( path: ':hibernate-jcache', configuration: 'javadocSources' )

jpamodelgen project( ':hibernate-processor' )
javadocSources project( path: ':hibernate-processor', configuration: 'javadocSources' )

javadocClasspath libs.loggingAnnotations
javadocClasspath jakartaLibs.validation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
* and ordinal parameters defined by the query.
* </ul>
* <pre>
* session.createMutationQuery("delete Draft where lastUpdated < local date - ?1 year")
* session.createMutationQuery("delete Draft where lastUpdated &lt; local date - ?1 year")
* .setParameter(1, years)
* .executeUpdate();
* </pre>
Expand Down
Loading