i am trying to generate a coverage report from a bunch of exec files. our coverage script, which uses ant's jacoco tasks, worked fine when the project was built under java 8. but now we are moving to java 11. and when i run the coverage script on the java 11-built project, it is giving the message
"Writing bundle "...." with 0 classes"
for every group. under java 8, it would say with (some number of) classes, not zero.
the exec files themselves look OK. at least, the sizes look similar to what we got under java 8.
there are no overt error messages. in the resulting coverage report, all the coverage numbers are shown as "n/a"
any hints as to how to make this work?