Skip to content

Commit

Permalink
Add jakarta prefix and fix a missing javax in spec (#183)
Browse files Browse the repository at this point in the history
Signed-off-by: Jean-Louis Monteiro <jlmonteiro@tomitribe.com>
  • Loading branch information
jeanouii committed Sep 4, 2020
1 parent 7c666a5 commit 4c210fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions spec/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
</goals>
<configuration>
<backend>html5</backend>
<outputFile>${project.build.directory}/generated-docs/server-pages-spec-${project.version}.html</outputFile>
<outputFile>${project.build.directory}/generated-docs/jakarta-server-pages-spec-${project.version}.html</outputFile>
<attributes>
<doctype>book</doctype>
<status>${status}</status>
Expand All @@ -194,7 +194,7 @@
</goals>
<configuration>
<backend>pdf</backend>
<outputFile>${project.build.directory}/generated-docs/server-pages-spec-${project.version}.pdf</outputFile>
<outputFile>${project.build.directory}/generated-docs/jakarta-server-pages-spec-${project.version}.pdf</outputFile>
<attributes>
<pdf-stylesdir>${project.basedir}/src/main/theme</pdf-stylesdir>
<pdf-style>jakartaee</pdf-style>
Expand Down
2 changes: 1 addition & 1 deletion spec/src/main/asciidoc/ServerPages.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3425,7 +3425,7 @@ expression using the `#{}` syntax.
equal to the type specified in the TLD). The expression is not
evaluated. The result of parsing the expression is passed directly to
the setter method of the tag attribute, whose argument type must be
`javax.el.ValueExpression`. This allows for deferred evaluation of EL
`jakarta.el.ValueExpression`. This allows for deferred evaluation of EL
expressions. When the expression is evaluated by the tag handler, the
value is coerced to the expected type. If a static value is provided, it
is converted to a `ValueExpression` where `isLiteralText()` returns
Expand Down

0 comments on commit 4c210fa

Please sign in to comment.