Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Install ByteBuddy agent once per JVM (#74)
Move bytebuddy agent installation to a static block so that the installation only happens once per JVM. This ensures that the plugin works well with BUCK(and likewise) build systems where multiple javac compilation task is started parallely in the same JVM. Without this the JVM crashes undeterministically. This will also work well in gradle build system where once javac task runs per JVM
- Loading branch information