Tags: pkware/jabel
Tags
Bump jna from 5.12.1 to 5.13.0 (bsideup#169) Bumps [jna](https://github.com/java-native-access/jna) from 5.12.1 to 5.13.0. - [Release notes](https://github.com/java-native-access/jna/releases) - [Changelog](https://github.com/java-native-access/jna/blob/master/CHANGES.md) - [Commits](java-native-access/jna@5.12.1...5.13.0) --- updated-dependencies: - dependency-name: net.java.dev.jna:jna dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bump byte-buddy-agent from 1.11.1 to 1.11.21 (bsideup#112) * Bump byte-buddy-agent from 1.11.1 to 1.11.21 Bumps [byte-buddy-agent](https://github.com/raphw/byte-buddy) from 1.11.1 to 1.11.21. - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](raphw/byte-buddy@byte-buddy-1.11.1...byte-buddy-1.11.21) --- updated-dependencies: - dependency-name: net.bytebuddy:byte-buddy-agent dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * Update build.gradle * Update build.gradle Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sergei Egorov <[email protected]>
Install ByteBuddy agent once per JVM (bsideup#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