File: java9.patch

package info (click to toggle)
mvel 2.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,332 kB
  • sloc: java: 43,882; xml: 268; makefile: 8
file content (30 lines) | stat: -rw-r--r-- 839 bytes parent folder | download
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
From: Markus Koschany <apo@debian.org>
Date: Sat, 2 Dec 2017 09:54:39 +0100
Subject: java9

Work around FTBFS with Java 9 by ignoring the doclint errors.

Bug-Debian: https://bugs.debian.org/875775
Forwarded: no
---
 pom.xml | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/pom.xml b/pom.xml
index dbed0b0..fdb10b9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -80,6 +80,13 @@
         </extensions>
 
         <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <failOnError>false</failOnError>
+                </configuration>
+            </plugin>
             <plugin>
                 <artifactId>maven-enforcer-plugin</artifactId>
                 <version>1.0</version>