File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed
local-build-plugins/src/main/groovy Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,6 @@ org.gradle.java.installations.auto-download=false
27
27
28
28
# externalized definition of JDK versions so that they are available in both Project (build.gradle) and Settings (settings.gradle)
29
29
orm.jdk.base =17
30
- orm.jdk.min =21
30
+ orm.jdk.min =23
31
31
# See gradlew/wrapper/gradle-wrapper.properties, https://docs.gradle.org/current/userguide/compatibility.html#java_runtime
32
- orm.jdk.max =22
32
+ orm.jdk.max =24
Original file line number Diff line number Diff line change @@ -11,15 +11,12 @@ configurations {
11
11
}
12
12
13
13
dependencies {
14
- themezip ' org.hibernate.infra:hibernate-asciidoctor-theme:5.1 .1.Final@zip'
14
+ themezip ' org.hibernate.infra:hibernate-asciidoctor-theme:6.0 .1.Final@zip'
15
15
}
16
16
17
17
tasks. register(' unpackTheme' , Copy ) {
18
18
def unpackDir = rootProject. layout. buildDirectory. dir(" unpacked-theme" )
19
19
20
- onlyIf {
21
- ! unpackDir. get(). asFile. exists()
22
- }
23
20
destinationDir = unpackDir. get(). asFile
24
21
25
22
def zipFile = configurations. themezip. singleFile
@@ -45,7 +42,7 @@ tasks.withType(Javadoc).configureEach {
45
42
docTitle = " Hibernate Javadocs ($project . name : $project . version )"
46
43
// Pick the styles for the JDK that is used to "build" the Javadocs:
47
44
stylesheetFile = rootProject. layout. buildDirectory. dir(" unpacked-theme" ). get()
48
- .dir(" hibernate-asciidoctor-theme" ). dir(" javadoc" ). dir(" jdk21 " ). file(" stylesheet.css" ). asFile
45
+ .dir(" hibernate-asciidoctor-theme" ). dir(" javadoc" ). dir(" jdk " + jdkVersions . min . asInt() ). file(" stylesheet.css" ). asFile
49
46
bottom = " Copyright © 2001-$currentYear <a href=\" https://redhat.com\" >Red Hat, Inc.</a> All Rights Reserved."
50
47
51
48
// The javadoc folder contains cached versions of the respective element-list files to avoid release issues when servers are down
You can’t perform that action at this time.
0 commit comments