You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by ta...@apache.org on 2022/03/29 23:06:51 UTC

[tika] 02/02: Improve reporting organization in maven 3.5.x

This is an automated email from the ASF dual-hosted git repository.

tallison pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tika.git

commit 39adeeb2f53b82465f2efd107259add1e155e3ef
Author: tallison <ta...@apache.org>
AuthorDate: Tue Mar 29 19:06:39 2022 -0400

    Improve reporting organization in maven 3.5.x
---
 tika-translate/pom.xml | 51 ++++++++++++++++++++++++++------------------------
 1 file changed, 27 insertions(+), 24 deletions(-)

diff --git a/tika-translate/pom.xml b/tika-translate/pom.xml
index 6353d89..7581c5a 100644
--- a/tika-translate/pom.xml
+++ b/tika-translate/pom.xml
@@ -134,6 +134,33 @@
       <scope>test</scope>
     </dependency>
   </dependencies>
+  <reporting>
+    <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-project-info-reports-plugin</artifactId>
+          <version>3.2.2l</version>
+          <reportSets>
+            <reportSet>
+              <reports>
+                <report>index</report>
+              </reports>
+            </reportSet>
+          </reportSets>
+        </plugin>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>findbugs-maven-plugin</artifactId>
+          <version>3.0.5</version>
+          <configuration>
+            <jvmArgs>-Xmx256m,-XX:MaxPermSize=256m</jvmArgs>
+            <timeout>240000</timeout>
+            <effort>max</effort>
+            <failOnError>true</failOnError>
+          </configuration>
+        </plugin>
+    </plugins>
+  </reporting>
   <build>
     <plugins>
       <plugin>
@@ -188,30 +215,6 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-site-plugin</artifactId>
         <version>3.11.0</version>
-        <configuration>
-          <reportPlugins>
-            <plugin>
-              <groupId>org.apache.maven.plugins</groupId>
-              <artifactId>maven-project-info-reports-plugin</artifactId>
-              <version>2.8</version>
-              <reports>
-                <report>index</report>
-              </reports>
-            </plugin>
-            <plugin>
-              <groupId>org.codehaus.mojo</groupId>
-              <artifactId>findbugs-maven-plugin</artifactId>
-              <version>3.0.5</version>
-              <configuration>
-                <argLine>-Xmx256m</argLine>
-                <argLine>-XX:MaxPermSize=256m</argLine>
-                <timeout>240000</timeout>
-                <effort>max</effort>
-                <failOnError>true</failOnError>
-              </configuration>
-            </plugin>
-          </reportPlugins>
-        </configuration>
       </plugin>
     </plugins>