java-ocr-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.asprise.ocr</groupId> <artifactId>java-ocr-api</artifactId> <version>15.3.0.3</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> <groupId>com.asprise.ocr</groupId> <artifactId>java-ocr-api</artifactId> <version>15.3.0.3</version> <packaging>jar</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>A Java OCR SDK Library API allows you to perform OCR and bar code recognition on images (JPEG, PNG, TIFF, PDF, etc.) and output as plain text, xml with full coordinate, searchable PDF or editable RTF.</description> <url>http://asprise.com/royalty-free-library/java-ocr-api-overview.html</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compile.source>1.5</maven.compile.source> <maven.compile.target>1.5</maven.compile.target> <maven.javadoc.failOnError>false</maven.javadoc.failOnError> <source.excludeResources>true</source.excludeResources> <windowtitle>Asprise OCR SDK for Java ${project.version}: Javadoc</windowtitle> <doctitle>Asprise OCR SDK for Java ${project.version}: Javadoc</doctitle> <excludePackageNames>com.asprise.ocr.*</excludePackageNames> <header><h4 style="">&#187; <a href="http://asprise.com/royalty-free-library/java-ocr-api-overview.html" target="_blank">Asprise OCR Home</a> &#183; <a href="http://asprise.com/ocr/docs/html/?src=javadoc" target="_blank">Developer's Guide</a></h4></header> <bottom><![CDATA[Copyright 2015 (C) <a href='http://asprise.com' target=_blank>Asprise</a>. ${header}]]> </bottom> </properties> <dependencies> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.0.4</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.3</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <configuration> <source>${maven.compile.source}</source> <target>${maven.compile.target}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <configuration> <archive> <manifest> <mainClass>com.asprise.ocr.Ocr</mainClass> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.3</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <licenses> <license> <name>GNU AFFERO GENERAL PUBLIC LICENSE, Version 3.0</name> <url>http://www.gnu.org/licenses/agpl-3.0.en.html</url> <comments>Open Source Initiative (OSI) Approved</comments> </license> </licenses> <developers> <developer> <name>Asprise</name> <email>dev@asprise.com</email> <organization>Asprise Inc</organization> <organizationUrl>http://asprise.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git@github.com:Asprise/java-ocr-api.git</connection> <developerConnection>scm:git:git@github.com:Asprise/java-ocr-api.git</developerConnection> <url>git@github.com:Asprise/java-ocr-api.git</url> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>