Re: Early Access builds for JDK 8u122 b02 , JDK 9 & JDK 9 with Project Jigsaw b140 are available on java.net

2016-10-27 Thread Tomas Zezula
Hi Stefan, > On 24 Oct 2016, at 17:49, Stefan Bodewig wrote: > > On 2016-10-24, Tomas Zezula wrote: > >> I suppose you are using the JDK9 Jake build >> (http://hg.openjdk.java.net/jigsaw/jake/) which prohibits >> AccessibleObject.setAccessible even on types in ex

Re: Early Access builds for JDK 8u122 b02 , JDK 9 & JDK 9 with Project Jigsaw b140 are available on java.net

2016-10-24 Thread Tomas Zezula
Hi Stefan, I suppose you are using the JDK9 Jake build (http://hg.openjdk.java.net/jigsaw/jake/) which prohibits AccessibleObject.setAccessible even on types in exported packages, the "exports private" needs to be used to allow access to non public types, see http://mail.openjdk.java.net/piperma

Re: Any Solaris / HP-UX Users out here?

2016-10-11 Thread Tomas Zezula
Hi Stefan, I can test on Solaris. — Tomas > On 10 Oct 2016, at 18:07, Stefan Bodewig wrote: > > Hi all > > we've received several reports about the ant wrapper script of Ant 1.9.7 > not working on the said systems. Most likely because some changes made > to it use sed and the printf built-in i

Re: JUnitTask + JDK9 question

2016-04-08 Thread Tomas Zezula
ceModule \ -XaddReads:sourceModule=ALL-UNNAMED \ -XaddExports:sourceModule/javaapplication1=ALL-UNNAMED \ -classpath lib/junit-4.12.jar:lib/hamcrest-core-1.3.jar:ant/lib/ant-launcher.jar:ant/lib/ant.jar:ant/lib/ant-junit.jar:ant/lib/ant-junit4.jar org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner a

JUnitTask + JDK9 question

2016-04-01 Thread Tomas Zezula
Hi All! In the JDK 9 module environment running unit tests is more complex task than it was in the classpath mode. The problems of test compilation and execution are nicely described in the following thread http://mail.openjdk.java.net/pipermail/jigsaw-dev/2016-March/thread.html#6587 on the ji

Jigsaw Support

2016-03-11 Thread Tomas Zezula
Hello, here is a pull request for extending the Ant Javac task to support Jigsaw modulepath, modulesourcepath and upgrademodulepath: https://github.com/apache/ant/pull/16 Thanks for review, — Tomas - To unsubscribe, e-mail: dev

Jigsaw Support

2016-03-03 Thread Tomas Zezula
Hi, I am working on the NetBeans Ant based project. For the upcoming NetBeans release I need to update the NetBeans generated build scripts to support the JDK 9 module system. The most problematic is the Java task which need to support main module execution in addition to jar and main class. Als