Skip to content
Commits on Source (4)
java-allocation-instrumenter (3.1.0-2) unstable; urgency=medium
* Team upload.
* Ignore the unused dependency on asm-xml (Closes: #913577)
* Fixed the build failure with Java 11
* Fixed the Vcs-Git URL
-- Emmanuel Bourg <ebourg@apache.org> Mon, 12 Nov 2018 22:40:59 +0100
java-allocation-instrumenter (3.1.0-1) unstable; urgency=medium
* Team upload.
......
......@@ -21,7 +21,7 @@ Build-Depends:
libreplacer-java,
maven-debian-helper
Standards-Version: 4.2.1
Vcs-Git: https://://anonscm.debian.org/git/java-team/java-allocation-instrumenter.git
Vcs-Git: https://salsa.debian.org/java-team/java-allocation-instrumenter.git
Vcs-Browser: https://salsa.debian.org/java-team/java-allocation-instrumenter
Homepage: https://github.com/google/allocation-instrumenter
......
junit junit * * * *
org.ow2.asm asm-xml * * * *
Description: No longer use the @Generated annotation to build with Java 11
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: no
--- a/src/main/java/com/google/monitoring/runtime/instrumentation/Bootstrap.java.in
+++ b/src/main/java/com/google/monitoring/runtime/instrumentation/Bootstrap.java.in
@@ -4,7 +4,6 @@
import java.lang.reflect.Method;
import java.net.JarURLConnection;
import java.util.jar.JarFile;
-import javax.annotation.Generated;
/**
* Add the agent to the bootclasspath before invoking premain().
@@ -30,7 +29,6 @@
* <p>This file is pre-processed to include the correct name of the class being used as a premain
* before being compiled and integrated into the agent.
*/
-@Generated(value = "GENERATOR")
public class CLASS_NAMEBootstrap {
public static void premain(String agentArgs, Instrumentation inst) {
try {
01-remove-generated-annotation.patch