lept4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.sourceforge.lept4j</groupId> <artifactId>lept4j</artifactId> <version>1.21.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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>net.sourceforge.lept4j</groupId> <artifactId>lept4j</artifactId> <version>1.21.0</version> <packaging>jar</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> <name>Lept4J - Leptonica for Java</name> <url>https://github.com/nguyenq/lept4j</url> <description> # Lept4J ## Description: A Java JNA wrapper for Leptonica Image Processing library. Lept4J is released and distributed under the Apache License, v2.0. </description> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> <licenses> <license> <name>Apache License 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://github.com/nguyenq/lept4j.git</connection> <developerConnection>scm:git:https://github.com/nguyenq/lept4j.git</developerConnection> <url>https://github.com/nguyenq/lept4j</url> </scm> <developers> <developer> <name>Quan Nguyen</name> <email>nguyenq@users.sf.net</email> </developer> </developers> <contributors> <contributor> <name>O.J. Sousa Rodrigues</name> <email>osoriojaques@gmail.com</email> <roles> <role>developer</role> <role>contributor</role> </roles> <timezone>+1</timezone> </contributor> </contributors> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <debug>false</debug> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <configuration> <detectJavaApiLink>false</detectJavaApiLink> <offlineLinks> <offlineLink> <url>https://docs.oracle.com/en/java/javase/12/docs/api/</url> </offlineLink> </offlineLinks> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.2</version> <configuration> <argLine>-Dfile.encoding=${project.build.sourceEncoding}</argLine> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>net.java.dev.jna</groupId> <artifactId>jna</artifactId> <version>5.16.0</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.18.0</version> </dependency> <dependency> <groupId>com.github.jai-imageio</groupId> <artifactId>jai-imageio-core</artifactId> <version>1.4.0</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.11.4</version> <scope>test</scope> </dependency> </dependencies> </project>