Skip to content

Commit

Permalink
Escape attribute reference (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
abelsromero authored Apr 26, 2024
1 parent cf0e404 commit 23adaac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/usage.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ javadoc {
docletpath = configurations.asciidoclet.files.asType(List)
doclet = '{asciidoclet-class}'
overview = "src/main/java/overview.adoc"
addStringOption "-base-dir", "${projectDir}" // <1>
addStringOption "-base-dir", "$\{projectDir}" // <1>
addStringOption \
"-attribute", // <2>
"name=${project.name}," +
Expand Down Expand Up @@ -147,7 +147,7 @@ javadoc {
docletpath = configurations.asciidoclet.files.asType(List)
doclet = '{asciidoclet-class}'
overview = "src/main/java/overview.adoc"
addStringOption "-base-dir", "${projectDir}" // <1>
addStringOption "-base-dir", "$\{projectDir}" // <1>
addStringOption \
"-attribute", // <2>
"name=${project.name}," +
Expand Down

0 comments on commit 23adaac

Please sign in to comment.