> On 23 Mar 2019, at 17:34, Gilles Sadowski <gillese...@gmail.com> wrote: > > Hi. > > I see that you use Java 11. > Can you try with a different version? > We only know that the build should work with Java 6, 7, 8, and 9. > > Actually, it would be a nice "micro-task" to figure out how to fix > that issue (confirmed to also happen with Java 10).
I think this failed due to JaCoCo 0.8.0. 0.8.2 was the first version to support Java 11. When I use 0.8.2 or 0.8.3 I can run: > mvn clean package -P commons-rng-examples Currently: commons RNG uses 0.8.0 commons parent 47 defines 0.8.1 commons parent 48-SNAPSHOT defines 0.8.2 So I’ve upgraded to 0.8.3 in commons-rng-parent. You should be able to build the package now. Note: I still get a problem on Java 11 when building the site. This is from the spotbugs site report generation. Upgrading that from 3.1.3 in the parent to the latest 3.1.11 works. Then I get some Javadoc build errors on tables in the MersenneTwister. Disable the javadoc report and I can build the site on JDK 11 using: > mvn clean package site -P commons-rng-examples -Dmaven.javadoc.skip=true I’ll fix the javadoc another day. Alex