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
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
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
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
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
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
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