solr-ocrhighlighting
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.digitalcollections</groupId> <artifactId>solr-ocrhighlighting</artifactId> <version>0.7.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>de.digitalcollections</groupId> <artifactId>solr-ocrhighlighting</artifactId> <name>Solr OCR Highlighting Plugin</name> <version>0.7.0</version> <description>Solr plugin to add support for highlighting directly from various OCR formats (hOCR/ALTO/MiniOCR) without having to store the OCR documents in the index.</description> <url>https://dbmdz.github.io/solr-ocrhighlighting</url> <developers> <developer> <name>Johannes Baiter</name> <email>johannes.baiter@bsb-muenchen.de</email> <organization>Bavarian State Library</organization> <organizationUrl>https://github.com/dbmdz</organizationUrl> </developer> <developer> <name>Christoph Lorenz</name> <email>christoph.lorenz@bsb-muenchen.de</email> <organization>Bavarian State Library</organization> <organizationUrl>https://github.com/dbmdz</organizationUrl> </developer> </developers> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <scm> <connection>scm:git:git://github.com/dbmdz/solr-ocrhighlighting.git</connection> <developerConnection>scm:git:ssh://github.com:dbmdz/solr-ocrhighlighting.git</developerConnection> <url>https://github.com/dbmdz/solr-ocrhighlighting/tree/master</url> </scm> <build> <plugins> <plugin> <groupId>com.coveo</groupId> <artifactId>fmt-maven-plugin</artifactId> <version>${version.fmt-maven-plugin}</version> <executions> <execution> <goals> <goal>format</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>de.sormuras.junit</groupId> <artifactId>junit-platform-maven-plugin</artifactId> <version>${version.junit-platform-maven}</version> <extensions>true</extensions> <configuration> <executor>JAVA</executor> <javaOptions> <inheritIO>true</inheritIO> <additionalOptions> <additionalOption>-Djava.security.egd=file:/dev/./urandom</additionalOption> </additionalOptions> </javaOptions> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>${version.maven-shade-plugin}</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <minimizeJar>true</minimizeJar> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> </filters> <artifactSet> <includes> <include>de.digitalcollections:solr-ocr-plugin</include> <include>org.apache.commons:commons-text</include> </includes> </artifactSet> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>${version.maven-javadoc-plugin}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <additionalOptions>-Xdoclint:none</additionalOptions> <additionalJOption>-Xdoclint:none</additionalJOption> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>${version.maven-source-plugin}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${version.nexus-staging-maven-plugin}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>deploy</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>org.apache.solr</groupId> <artifactId>solr-core</artifactId> <version>8.9.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.solr</groupId> <artifactId>solr-test-framework</artifactId> <version>8.9.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>lucene-test-framework</artifactId> <groupId>org.apache.lucene</groupId> </exclusion> <exclusion> <artifactId>junit4-ant</artifactId> <groupId>com.carrotsearch.randomizedtesting</groupId> </exclusion> <exclusion> <artifactId>randomizedtesting-runner</artifactId> <groupId>com.carrotsearch.randomizedtesting</groupId> </exclusion> <exclusion> <artifactId>opentracing-mock</artifactId> <groupId>io.opentracing</groupId> </exclusion> <exclusion> <artifactId>junit</artifactId> <groupId>junit</groupId> </exclusion> <exclusion> <artifactId>ant</artifactId> <groupId>org.apache.ant</groupId> </exclusion> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.solr</groupId> <artifactId>solr-analysis-extras</artifactId> <version>8.9.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>lucene-analyzers-icu</artifactId> <groupId>org.apache.lucene</groupId> </exclusion> <exclusion> <artifactId>lucene-analyzers-morfologik</artifactId> <groupId>org.apache.lucene</groupId> </exclusion> <exclusion> <artifactId>lucene-analyzers-opennlp</artifactId> <groupId>org.apache.lucene</groupId> </exclusion> <exclusion> <artifactId>lucene-analyzers-smartcn</artifactId> <groupId>org.apache.lucene</groupId> </exclusion> <exclusion> <artifactId>lucene-analyzers-stempel</artifactId> <groupId>org.apache.lucene</groupId> </exclusion> <exclusion> <artifactId>icu4j</artifactId> <groupId>com.ibm.icu</groupId> </exclusion> <exclusion> <artifactId>opennlp-tools</artifactId> <groupId>org.apache.opennlp</groupId> </exclusion> <exclusion> <artifactId>morfologik-fsa</artifactId> <groupId>org.carrot2</groupId> </exclusion> <exclusion> <artifactId>morfologik-polish</artifactId> <groupId>org.carrot2</groupId> </exclusion> <exclusion> <artifactId>morfologik-stemming</artifactId> <groupId>org.carrot2</groupId> </exclusion> <exclusion> <artifactId>morfologik-ukrainian-search</artifactId> <groupId>ua.net.nlp</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.20.2</version> <scope>test</scope> </dependency> <dependency> <groupId>com.revinate</groupId> <artifactId>assertj-json</artifactId> <version>1.2.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.7.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>apiguardian-api</artifactId> <groupId>org.apiguardian</groupId> </exclusion> <exclusion> <artifactId>opentest4j</artifactId> <groupId>org.opentest4j</groupId> </exclusion> <exclusion> <artifactId>junit-platform-commons</artifactId> <groupId>org.junit.platform</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>5.7.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>apiguardian-api</artifactId> <groupId>org.apiguardian</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> <version>5.7.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-platform-engine</artifactId> <groupId>org.junit.platform</groupId> </exclusion> <exclusion> <artifactId>junit</artifactId> <groupId>junit</groupId> </exclusion> <exclusion> <artifactId>apiguardian-api</artifactId> <groupId>org.apiguardian</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>3.11.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>byte-buddy-agent</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-nop</artifactId> <version>1.7.31</version> <scope>test</scope> </dependency> <dependency> <groupId>net.byteseek</groupId> <artifactId>byteseek</artifactId> <version>2.0.3</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>trove4j</artifactId> <groupId>net.sf.trove4j</groupId> </exclusion> </exclusions> </dependency> </dependencies> <distributionManagement> <snapshotRepository> <id>ossrh-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <version.commons-text>1.9</version.commons-text> <version.maven-source-plugin>3.2.1</version.maven-source-plugin> <version.assertj>3.20.2</version.assertj> <version.junit>5.7.2</version.junit> <java.version>1.8</java.version> <maven.compiler.source>1.8</maven.compiler.source> <version.junit-platform-maven>1.1.2</version.junit-platform-maven> <version.mockito>3.11.2</version.mockito> <version.solr>8.9.0</version.solr> <version.nexus-staging-maven-plugin>1.6.8</version.nexus-staging-maven-plugin> <version.fmt-maven-plugin>2.11</version.fmt-maven-plugin> <maven.compiler.target>1.8</maven.compiler.target> <version.assertj-json>1.2.0</version.assertj-json> <version.log4j>2.11.1</version.log4j> <version.maven-shade-plugin>3.2.4</version.maven-shade-plugin> <version.slf4j>1.7.31</version.slf4j> <version.maven-gpg-plugin>3.0.1</version.maven-gpg-plugin> <version.maven-javadoc-plugin>3.3.0</version.maven-javadoc-plugin> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <version.byteseek>2.0.3</version.byteseek> </properties> </project>