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:49 UTC

[tika] branch main updated (b14b4b1 -> 39adeeb)

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

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


    from b14b4b1  TIKA-3675 -- various other updates
     new 950f3d9  TIKA-3675 -- revert mistaken pdfbox snapshot commit
     new 39adeeb  Improve reporting organization in maven 3.5.x

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 tika-parent/pom.xml    |  2 +-
 tika-translate/pom.xml | 51 ++++++++++++++++++++++++++------------------------
 2 files changed, 28 insertions(+), 25 deletions(-)

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

Posted by ta...@apache.org.
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>
 

[tika] 01/02: TIKA-3675 -- revert mistaken pdfbox snapshot commit

Posted by ta...@apache.org.
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 950f3d9faae1686db6d7dcc3fc1c65957d0b79c4
Author: tallison <ta...@apache.org>
AuthorDate: Tue Mar 29 19:06:02 2022 -0400

    TIKA-3675 -- revert mistaken pdfbox snapshot commit
---
 tika-parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tika-parent/pom.xml b/tika-parent/pom.xml
index 45f0ea8..0573c84 100644
--- a/tika-parent/pom.xml
+++ b/tika-parent/pom.xml
@@ -360,7 +360,7 @@
     <!-- some conflict with slf4j with >= 4.12.0
           causes failure in testForkParser -->
     <pax.exam.version>4.13.1</pax.exam.version>
-    <pdfbox.version>2.0.26-SNAPSHOT</pdfbox.version>
+    <pdfbox.version>2.0.25</pdfbox.version>
     <!-- NOTE: sync tukaani version with commons-compress in tika-parsers -->
     <poi.version>5.2.2</poi.version>
     <quartz.version>2.3.2</quartz.version>