This is an automated email from the ASF dual-hosted git repository. fschumacher pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/jmeter.git The following commit(s) were added to refs/heads/master by this push: new 7645c7d Mention deprecation of Nashorn in changes.xml 7645c7d is described below commit 7645c7d1a8686b714e94b359bbe1c2355d50dd78 Author: Felix Schumacher AuthorDate: Wed Oct 9 15:26:09 2019 +0200 Mention deprecation of Nashorn in changes.xml --- xdocs/changes.xml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/xdocs/changes.xml b/xdocs/changes.xml index 48c6b6f..fbb0368 100644 --- a/xdocs/changes.xml +++ b/xdocs/changes.xml @@ -345,6 +345,19 @@ JTable selection with keyboard (SHIFTup/down< This is due to a known Java bug JDK-8025126 The fix is to use JDK 8 b132 or later. + +
  • +Since Java 11 the JavaScript implementation Nashorn has been deprecated. +Java will emit the following deprecation warnings, if you are using JavaScript based on Nashorn. + +Warning: Nashorn engine is planned to be removed from a future JDK release + +To silence these warnings, add -Dnashorn.args=--no-deprecation-warning to your Java arguments. +That can be achieved by setting the enviroment variable JVM_ARGS + +export JVM_ARGS="-Dnashorn.args=--no-deprecation-warning" + +