merkle-tree
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.crums</groupId> <artifactId>merkle-tree</artifactId> <version>1.1.0</version> </dependency>
<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>io.crums</groupId> <artifactId>merkle-tree</artifactId> <version>1.1.0</version> <name>${project.groupId}:${project.artifactId}</name> <url>https://crums.io/project/merkle-tree</url> <description> A flexible Merkle tree implementation with support for navigating the tree's nodes and constructing Merkle proofs (about an item's existence in the set). </description> <licenses> <license> <name>GNU Lesser General Public License, Version 3</name> <url>https://www.gnu.org/licenses/lgpl-3.0.txt</url> </license> </licenses> <developers> <developer> <name>Babak Farhang</name> <email>babak@crums.io</email> <organization>Crums</organization> <organizationUrl>https://crums.io</organizationUrl> </developer> </developers> <profiles> <profile> <id>deploy-profile</id> <build> <plugins> <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> </plugins> </build> </profile> </profiles> <scm> <connection>scm:git:git://github.com/crums-io/merkle-tree.git</connection> <developerConnection>scm:git:ssh://github.com:crums-io/merkle-tree.git</developerConnection> <url>http://github.com/crums-io/merkle-tree/tree/master</url> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.release>17</maven.compiler.release> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</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>3.4.1</version> <configuration> <!-- Note the following is necessary only if _other_ javadoc errors are present, i.e. unnecessary: <sourceFileExcludes>module-info.java</sourceFileExcludes> --> <!-- Following are defaults: <quiet>false</quiet> (not exactly "quiet" when set to true) <failOnWarnings>false</failOnWarnings> <failOnError>true</failOnError> --> <bottom> <![CDATA[ <table width="100%"> <tr> <td style="text-align: left;"> io.crums::merkle-tree v1.1.0<br/> Licensed under the GNU Lesser General Public License v3 (<a href="https://www.gnu.org/licenses/lgpl-3.0.txt">LGPL</a>) </td> <td style="text-align: right;"><br/>© 2020-2024 <a href="http://crums.io">crums.io</a> All Rights Reserved. </td> </tr> </table> ]]> </bottom> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.8.2</version> <scope>test</scope> </dependency> </dependencies> </project>