Skip to content

Commit

Permalink
TIKA-2808 -- exclude h2 from ossindex-maven-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
tballison committed Jan 7, 2019
1 parent 06cf66c commit f3fac43
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions tika-eval/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -254,6 +256,20 @@
</execution>
</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>
Expand Down

0 comments on commit f3fac43

Please sign in to comment.