Skip to content

Commit 0668a0c

Browse files
build: use JDK17
Signed-off-by: Andreas Reichel <[email protected]>
1 parent 0d0c3b7 commit 0668a0c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -435,11 +435,11 @@ tasks.register('updateKeywords', JavaExec) {
435435

436436
task xslt(type: SaxonXsltTask) {
437437
def outFile = version.endsWith("-SNAPSHOT")
438-
? project(":JSQLParser").file("src/site/sphinx/syntax_snapshot.rst")
439-
: project(":JSQLParser").file("src/site/sphinx/syntax_stable.rst")
438+
? file("src/site/sphinx/syntax_snapshot.rst")
439+
: file("src/site/sphinx/syntax_stable.rst")
440440

441441
dependsOn(renderRR)
442-
stylesheet project(":JSQLParser").file('src/main/resources/rr/xhtml2rst.xsl')
442+
stylesheet file('src/main/resources/rr/xhtml2rst.xsl')
443443

444444
parameters (
445445
"withFloatingToc": System.getenv().getOrDefault("FLOATING_TOC", "true"),

0 commit comments

Comments
 (0)