File: 01-multi-release-jar.patch

package info (click to toggle)
libscram-java 3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 668 kB
  • sloc: java: 3,223; xml: 1,313; sh: 240; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 739 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: Adds the missing Multi-Release attribute in the manifest.
 Without this attribute the module-info.class of scram-common is not seen
 when compiling scram-client and the build fails. Why is the attribute
 missing when building with maven-debian-helper???
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/scram-parent/pom.xml
+++ b/scram-parent/pom.xml
@@ -205,6 +205,9 @@
               <manifest>
                 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
               </manifest>
+              <manifestEntries>
+                <Multi-Release>true</Multi-Release>
+              </manifestEntries>
             </archive>
           </configuration>
         </plugin>