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 2019/01/07 17:23:13 UTC

[tika] branch master updated: TIKA-2808 -- exclude h2 from ossindex-maven-plugin

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

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


The following commit(s) were added to refs/heads/master by this push:
     new f3fac43  TIKA-2808 -- exclude h2 from ossindex-maven-plugin
f3fac43 is described below

commit f3fac43b3dd3c4a735c2de2598176eda865aed9b
Author: TALLISON <ta...@apache.org>
AuthorDate: Mon Jan 7 12:23:00 2019 -0500

    TIKA-2808 -- exclude h2 from ossindex-maven-plugin
---
 tika-eval/pom.xml | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/tika-eval/pom.xml b/tika-eval/pom.xml
index 394cf60..40d903b 100644
--- a/tika-eval/pom.xml
+++ b/tika-eval/pom.xml
@@ -57,6 +57,8 @@
             <version>3.6.1</version>
         </dependency>
 
+        <!-- check if exclusion from oss-index check
+            is necessary on next upgrade -->
         <dependency>
             <groupId>com.h2database</groupId>
             <artifactId>h2</artifactId>
@@ -255,6 +257,20 @@
                 </executions>
             </plugin>
             <plugin>
+                <groupId>org.sonatype.ossindex.maven</groupId>
+                <artifactId>ossindex-maven-plugin</artifactId>
+                <configuration>
+                    <!-- ignore this until 1.4.198 is available -->
+                    <excludeCoordinates>
+                        <exclude>
+                            <groupId>com.h2database</groupId>
+                            <artifactId>h2</artifactId>
+                            <version>1.4.197</version>
+                        </exclude>
+                    </excludeCoordinates>
+                </configuration>
+            </plugin>
+            <plugin>
                 <artifactId>maven-failsafe-plugin</artifactId>
                 <version>${maven.failsafe.version}</version>
                 <configuration>