Re: Technical question about the Java Dependency Analysis Tool

2015-11-10 Thread Mandy Chung
jdeps already has the option finding the JAR files needed to compile A.jar. There is a new jdeps option added to Jigsaw EA build [1] to make this easier: $ jdeps -s -ct -R -cp lib/* A.jar This will transitively find all dependencies from the references in A.jar and shows the summary of the

hg: jigsaw/jake/jdk: Fix for 81422389. Close archives in all cases.

2015-11-10 Thread jean-francois . denise
Changeset: 1943b3022700 Author:jfdenise Date: 2015-11-10 14:43 +0100 URL: http://hg.openjdk.java.net/jigsaw/jake/jdk/rev/1943b3022700 Fix for 81422389. Close archives in all cases. Reviewed-by: jlaskey ! src/jdk.jlink/share/classes/jdk/tools/jlink/internal/ImageFileCreator.java

Re: RFR: 8139430

2015-11-10 Thread Mandy Chung
> On Nov 10, 2015, at 10:11 AM, Alexandre (Shura) Iline > wrote: > >> >> On Nov 10, 2015, at 9:04 PM, Mandy Chung wrote: >> >> Hi Shura, >> >> Thanks for doing it and it’s good to see the unnecessary dependency to >> java.management

Re: RFR: 8139430

2015-11-10 Thread Mandy Chung
Hi Shura, Thanks for doing it and it’s good to see the unnecessary dependency to java.management eliminated. The new jdk.testlibrary.management package name is fine. It’s okay to keep the class name InputArguments as Jaroslav suggests and it’s easier to tell what this class is about. There

Re: RFR: 8139430

2015-11-10 Thread Alan Bateman
On 09/11/2015 19:12, Alexandre (Shura) Iline wrote: Hi I have just realized that an NPE could also be possible in test/lib/testlibrary/jdk/testlibrary/Platform.java so it should be updated also: http://cr.openjdk.java.net/~shurailine/8139430/webrev.04/ Shura I skimmed through the webrev

hg: jigsaw/jake/langtools: 8140767: adding -XaddReads option to javac

2015-11-10 Thread jonathan . gibbons
Changeset: 2c1838c6e03c Author:jlahoda Date: 2015-11-10 14:19 -0800 URL: http://hg.openjdk.java.net/jigsaw/jake/langtools/rev/2c1838c6e03c 8140767: adding -XaddReads option to javac ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/Directive.java !

Re: JOSM feedback on Java 7,8,9, including Jigsaw EA

2015-11-10 Thread Wang Weijun
Ping again. Will the future JRE only include java.se? In other words, what will the java.com download for non-developers contain? Thanks Max > On Nov 5, 2015, at 10:07 AM, Wang Weijun wrote: > > I was talking with Vincent off the list, but it seems better to be back.

hg: jigsaw/jake/jdk: 2 new changesets

2015-11-10 Thread jean-francois . denise
Changeset: 1148a05d184a Author:jfdenise Date: 2015-11-10 10:28 +0100 URL: http://hg.openjdk.java.net/jigsaw/jake/jdk/rev/1148a05d184a Fix for 8135077, 8134944, 8139296 Reviewed-by: jlaskey ! src/jdk.jlink/share/classes/jdk/tools/jlink/JlinkTask.java !

Re: RFR: 8139430

2015-11-10 Thread Mandy Chung
> On Nov 10, 2015, at 12:42 PM, Alan Bateman wrote: > > Would it break many tests if getProcessId were changed to return long to > match ProcessHandle::getPid? There are not small number of tests doing Integer.toString(ProcessTools.getProcessId())); Most of them