sourceafis
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.machinezoo.sourceafis</groupId> <artifactId>sourceafis</artifactId> <version>3.18.1</version> </dependency>
<!-- Generated by scripts/configure.py --> <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.machinezoo.sourceafis</groupId> <artifactId>sourceafis</artifactId> <version>3.18.1</version> <name>SourceAFIS</name> <description>Fingerprint recognition engine that takes a pair of human fingerprint images and returns their similarity score. Supports efficient 1:N search.</description> <url>https://sourceafis.machinezoo.com/java</url> <inceptionYear>2009</inceptionYear> <licenses> <license> <name>Apache-2.0</name> <url>https://github.com/robertvazan/sourceafis-java/blob/master/LICENSE</url> </license> </licenses> <organization> <name>Robert Važan</name> <url>https://robert.machinezoo.com/</url> </organization> <developers> <developer> <name>Robert Važan</name> <email>robert.vazan@tutanota.com</email> <url>https://robert.machinezoo.com/</url> </developer> </developers> <scm> <connection>scm:git:https://github.com/robertvazan/sourceafis-java.git</connection> <developerConnection>scm:git:https://github.com/robertvazan/sourceafis-java.git</developerConnection> <url>https://github.com/robertvazan/sourceafis-java</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.release>11</maven.compiler.release> </properties> <dependencies> <dependency> <groupId>com.machinezoo.stagean</groupId> <artifactId>stagean</artifactId> <version>1.3.0</version> </dependency> <dependency> <groupId>com.machinezoo.closeablescope</groupId> <artifactId>closeablescope</artifactId> <version>1.0.1</version> </dependency> <dependency> <groupId>com.machinezoo.noexception</groupId> <artifactId>noexception</artifactId> <version>1.9.1</version> </dependency> <dependency> <groupId>com.machinezoo.fingerprintio</groupId> <artifactId>fingerprintio</artifactId> <version>1.3.1</version> </dependency> <dependency> <groupId>it.unimi.dsi</groupId> <artifactId>fastutil</artifactId> <version>8.5.12</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.15.0</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.10.1</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.15.3</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-cbor</artifactId> <version>2.15.3</version> </dependency> <dependency> <groupId>com.github.mhshams</groupId> <artifactId>jnbis</artifactId> <version>2.1.2</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.10.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <version>2.2</version> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/filtered</directory> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.2.2</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.11</version> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.2</version> <configuration> <notimestamp>true</notimestamp> <bottom> <![CDATA[<!-- No copyright message. -->]]> </bottom> <links> <link>https://stagean.machinezoo.com/javadoc/</link> <link>https://closeablescope.machinezoo.com/javadoc/</link> <link>https://noexception.machinezoo.com/javadocs/core/</link> <link>https://fingerprintio.machinezoo.com/javadoc/</link> </links> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</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> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>