Hi there. I plugged `kapt` in my project and it br...
# kapt
a
Hi there. I plugged
kapt
in my project and it broke
jcstress
task:
Copy code
Exception in thread "main" java.lang.NullPointerException
        at java.base/java.io.Reader.<init>(Reader.java:167)
        at java.base/java.io.InputStreamReader.<init>(InputStreamReader.java:72)
        at org.openjdk.jcstress.infra.runners.TestList.getTests(TestList.java:53)
        at org.openjdk.jcstress.infra.runners.TestList.tests(TestList.java:105)
        at org.openjdk.jcstress.JCStress.getTests(JCStress.java:139)
        at org.openjdk.jcstress.JCStress.run(JCStress.java:67)
        at org.openjdk.jcstress.Main.main(Main.java:60)
What I see is that some files (
META-INF/TestList
and jcstress class files) are missing in a jar file which produced by` jcstress`. May be someone knows a workaround for the problem. An example project can be found here: https://github.com/anti-social/kapt-vs-jcstress/blob/master/build.gradle.kts#L13