JDK-8169552 : fix old jar list in build.gradle
  • Type: Bug
  • Component: javafx
  • Sub-Component: build
  • Priority: P4
  • Status: Resolved
  • Resolution: Fixed
  • Submitted: 2016-11-10
  • Updated: 2016-11-16
  • Resolved: 2016-11-16
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 9
9Fixed
Related Reports
Relates :  
Description
The list of checked jars in build/libs is wrong....

diff --git a/build.gradle b/build.gradle
--- a/build.gradle
+++ b/build.gradle
@@ -1753,7 +1753,7 @@
         libsDir.mkdirs();
 
         def allLibsPresent = true
-        def libNames = ["antlr-3.1.3.jar", "stringtemplate-3.2.jar", "antlr-runtime-3.1.3.jar"]
+        def libNames = [ "antlr-complete-3.5.2.jar" ]
         libNames.each { name ->
             File f = new File(libsDir, name)
             if (!f.exists()) allLibsPresent = false
Comments
Changeset: 81a54a42693f Author: ddhill Date: 2016-11-15 18:46 -0500 URL: http://hg.openjdk.java.net/openjfx/9-dev/rt/rev/81a54a42693f 8169552: fix old jar list in build.gradle Reviewed-by: kcr ! build.gradle
16-11-2016

+1
14-11-2016