From 4ccca1fc148e9aeee22b3b1fd003abb70e5d0d15 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Sat, 7 Nov 2015 18:42:17 +0100 Subject: [PATCH] use reflection rather than getResource to locate javax.script Using getResource won't load .class files on Jigsaw-modified versions of Java9. Bugzilla 58271: https://bz.apache.org/bugzilla/show_bug.cgi?id=58271 --- WHATSNEW | 3 +++ .../apache/tools/ant/util/ScriptRunnerCreator.java | 12 +++++++++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/WHATSNEW b/WHATSNEW index 385b2233f..0d06316c4 100644 --- a/WHATSNEW +++ b/WHATSNEW @@ -30,6 +30,9 @@ Fixed bugs: create archives of that kind. https://issues.apache.org/jira/browse/COMPRESS-324 + *