solr-ocrpayload-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.digitalcollections.search</groupId> <artifactId>solr-ocrpayload-plugin</artifactId> <version>0.2.1</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>solr-ocrpayload-plugin</artifactId> <groupId>de.digitalcollections.search</groupId> <version>0.2.1</version> <packaging>jar</packaging> <name>Solr OCR Coordinate Payload Plugin</name> <description> Efficient indexing and bounding-box "highlighting" for OCR text </description> <url>https://github.com/dbmdz/solr-ocrpayload-plugin</url> <licenses> <license> <name>MIT License</name> <url>https://github.com/dbmdz/solr-ocrpayload-plugin/blob/master/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Johannes Baiter</name> <email>johannes.baiter@bsb-muenchen.de</email> <id>jbaiter</id> </developer> <developer> <name>Christoph Lorenz</name> <email>christoph.lorenz@bsb-muenchen.de</email> <id>clorenz</id> </developer> </developers> <ciManagement> <url>https://travis-ci.org/dbmdz/solr-ocrpayload-plugin</url> <system>Travis CI</system> </ciManagement> <issueManagement> <url>https://github.com/dbmdz/solr-ocrpayload-plugin/issues</url> <system>GitHub Issues</system> </issueManagement> <scm> <connection>https://github.com/dbmdz/solr-ocrpayload-plugin.git</connection> <developerConnection>git@github.com:dbmdz/solr-ocrpayload-plugin.git</developerConnection> <url>https://github.com/dbmdz/solr-ocrpayload-plugin</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <version.assertj>3.10.0</version.assertj> <version.assertj-json>1.2.0</version.assertj-json> <version.junit>5.2.0</version.junit> <version.junit-platform>1.2.0</version.junit-platform> <version.log4j>2.11.0</version.log4j> <version.slf4j>1.7.25</version.slf4j> <version.solr>7.3.1</version.solr> <version.mvn-jacoco>0.8.1</version.mvn-jacoco> </properties> <dependencies> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>${version.log4j}</version> </dependency> <dependency> <groupId>org.apache.solr</groupId> <artifactId>solr-core</artifactId> <version>${version.solr}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${version.slf4j}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-nop</artifactId> <version>${version.slf4j}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.solr</groupId> <artifactId>solr-test-framework</artifactId> <version>${version.solr}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${version.assertj}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.revinate</groupId> <artifactId>assertj-json</artifactId> <version>${version.assertj-json}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${version.junit}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${version.junit}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-engine</artifactId> <version>${version.junit-platform}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-launcher</artifactId> <version>${version.junit-platform}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${version.junit}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> <version>${version.junit}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.7.0</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.0.2</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.21.0</version> <dependencies> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-surefire-provider</artifactId> <version>${version.junit-platform}</version> </dependency> </dependencies> <configuration> <systemPropertyVariables> <java.security.egd>file:/dev/./urandom</java.security.egd> </systemPropertyVariables> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.1</version> <configuration> <doclet>ch.raffael.mddoclet.MarkdownDoclet</doclet> <docletArtifact> <groupId>ch.raffael.markdown-doclet</groupId> <artifactId>markdown-doclet</artifactId> <version>1.4</version> </docletArtifact> <useStandardDocletOptions>true</useStandardDocletOptions> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${version.mvn-jacoco}</version> <executions> <execution> <id>pre-unit-test</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</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>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${version.mvn-jacoco}</version> </plugin> </plugins> </reporting> <profiles> <profile> <id>deploy</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <distributionManagement> <snapshotRepository> <id>ossrh-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <repositories> <repository> <id>ossrh-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <snapshots> <enabled>true</enabled> </snapshots> <releases> <enabled>false</enabled> </releases> </repository> </repositories> </project>