fingerprintio
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.machinezoo.fingerprintio</groupId> <artifactId>fingerprintio</artifactId> <version>1.3.3</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.fingerprintio</groupId> <artifactId>fingerprintio</artifactId> <version>1.3.3</version> <name>FingerprintIO</name> <description>Implementation of fingerprint template formats published by ANSI and ISO.</description> <url>https://fingerprintio.machinezoo.com/</url> <inceptionYear>2019</inceptionYear> <licenses> <license> <name>Apache-2.0</name> <url>https://github.com/robertvazan/fingerprintio-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/fingerprintio-java.git</connection> <developerConnection>scm:git:https://github.com/robertvazan/fingerprintio-java.git</developerConnection> <url>https://github.com/robertvazan/fingerprintio-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.noexception</groupId> <artifactId>noexception</artifactId> <version>1.9.1</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.10.1</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.15.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.15.3</version> <scope>test</scope> </dependency> </dependencies> <build> <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://noexception.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.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.6.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </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>