For some reason as of Scala 2.13 it doesn't seem to be possible to use the Scala library when running javac as an annotation processor through Zinc. It simply results in NoSuchMethodErrors for every Scala collection method.
I have had to use -Yno-imports and Java 8 Streams in the codegen module, which has resulted in some terrible code. Who knew last was so difficult to write in Java 8.