1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
From: Markus Koschany <apo@debian.org>
Date: Mon, 16 Oct 2017 15:45:02 +0200
Subject: maven bundle plugin failok
Workaround for #868913.
Bug-Debian: https://bugs.debian.org/868603
---
accessors-smart/pom.xml | 1 +
json-smart/pom.xml | 1 +
2 files changed, 2 insertions(+)
diff --git a/accessors-smart/pom.xml b/accessors-smart/pom.xml
index 0903118..ff2ced3 100644
--- a/accessors-smart/pom.xml
+++ b/accessors-smart/pom.xml
@@ -61,6 +61,7 @@ accessors-smart use ASM to speed up those calls.
</Export-Package>
<!-- Private-Package></Private-Package -->
<Embed-Dependency>asm;groupId=org.ow2.asm;inline=true</Embed-Dependency>
+ <_failok>true</_failok>
</instructions>
</configuration>
</plugin>
diff --git a/json-smart/pom.xml b/json-smart/pom.xml
index 494f327..bf098db 100644
--- a/json-smart/pom.xml
+++ b/json-smart/pom.xml
@@ -58,6 +58,7 @@
</Export-Package>
<!-- Private-Package></Private-Package -->
<Embed-Dependency>accessors-smart;groupId=net.minidev;inline=true</Embed-Dependency>
+ <_failok>true</_failok>
</instructions>
</configuration>
</plugin>
|