From commits-return-10192-apmail-jmeter-commits-archive=jmeter.apache.org@jmeter.apache.org Wed Oct 9 19:00:45 2019 Return-Path: X-Original-To: apmail-jmeter-commits-archive@minotaur.apache.org Delivered-To: apmail-jmeter-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by minotaur.apache.org (Postfix) with SMTP id 657551988A for ; Wed, 9 Oct 2019 19:00:45 +0000 (UTC) Received: (qmail 71633 invoked by uid 500); 9 Oct 2019 19:00:45 -0000 Delivered-To: apmail-jmeter-commits-archive@jmeter.apache.org Received: (qmail 71607 invoked by uid 500); 9 Oct 2019 19:00:44 -0000 Mailing-List: contact commits-help@jmeter.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@jmeter.apache.org Delivered-To: mailing list commits@jmeter.apache.org Received: (qmail 71598 invoked by uid 99); 9 Oct 2019 19:00:44 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Oct 2019 19:00:44 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id B0B92890A2; Wed, 9 Oct 2019 19:00:44 +0000 (UTC) Date: Wed, 09 Oct 2019 19:00:44 +0000 To: "commits@jmeter.apache.org" Subject: [jmeter] branch master updated: Mention deprecation of Nashorn in changes.xml MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <157064764462.19172.16552776303149874435@gitbox.apache.org> From: fschumacher@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: jmeter X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: c2b09342847bd41e83e43b6f77c7d46f710fd96b X-Git-Newrev: 7645c7d1a8686b714e94b359bbe1c2355d50dd78 X-Git-Rev: 7645c7d1a8686b714e94b359bbe1c2355d50dd78 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated 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" + +