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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
From: Mechtilde <mechtilde@debian.org>
Date: Sun, 6 Apr 2025 14:11:53 +0200
Subject: Remove maven-javadoc-plugin from pom.xml
Gbp-Pq: 09_Remove maven-javadoc-plugin from pom.xml
Forwarded: No
Last-Update: 2020-04-12
---
pom.xml | 50 --------------------------------------------------
1 file changed, 50 deletions(-)
diff --git a/pom.xml b/pom.xml
index 0597ae4..e756a5d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -144,56 +144,6 @@
-->
</resources>
<plugins>
- <!-- Create a Javadoc JAR -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>3.0.0</version>
- <configuration>
- <encoding>UTF-8</encoding>
- <linksource>true</linksource>
- <links>
- <link>https://mangstadt.github.io/vinnie/javadocs/latest/</link>
- <link>https://freemarker.apache.org/docs/api</link>
- <link>http://jsoup.org/apidocs/</link>
- <link>https://fasterxml.github.io/jackson-databind/javadoc/2.14/</link>
- </links>
- <quiet>true</quiet>
-
- <!-- The build fails if it detects Javascript in the footer. -->
- <additionalOptions>
- <additionalOption>--allow-script-in-comments</additionalOption>
- </additionalOptions>
-
- <!-- exclude commons-codec source -->
- <excludePackageNames>ezvcard.util.org.*</excludePackageNames>
-
- <!-- Add Javascript syntax highlighter -->
- <top><![CDATA[
- <script src="doc-files/shCore.js" type="text/javascript"></script>
- <script src="doc-files/shBrushJava.js" type="text/javascript"></script>
- ]]></top>
- <footer><![CDATA[
- <script type="text/javascript">
- SyntaxHighlighter.defaults["auto-links"] = false;
- SyntaxHighlighter.defaults["gutter"] = false;
- SyntaxHighlighter.defaults["tab-size"] = 2;
- SyntaxHighlighter.defaults["toolbar"] = false;
- SyntaxHighlighter.all();
- </script>
- ]]></footer>
- <docfilessubdirs>true</docfilessubdirs>
- <stylesheetfile>src/main/javadoc/syntaxhighlighter.css</stylesheetfile>
- </configuration>
- <executions>
- <execution>
- <id>attach-javadocs</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
<!--
FindBugs plugin
|