flow-jvm-sdk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.nftco</groupId> <artifactId>flow-jvm-sdk</artifactId> <version>0.7.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>com.nftco</groupId> <artifactId>flow-jvm-sdk</artifactId> <version>0.7.4</version> <name>flow-jvm-sdk</name> <description>The Flow Blockchain JVM SDK</description> <url>https://onflow.org</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Flow Developers</name> <url>https://onflow.org</url> </developer> </developers> <scm> <connection>scm:git:git@github.com/onflow/flow-jvm-sdk.git</connection> <developerConnection>scm:git:git@github.com/onflow/flow-jvm-sdk.git</developerConnection> <url>https://github.com/onflow/flow</url> </scm> <dependencyManagement> <dependencies> <dependency> <groupId>com.fasterxml.jackson</groupId> <artifactId>jackson-bom</artifactId> <version>2.12.2</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-reflect</artifactId> <version>1.5.10</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.onflow</groupId> <artifactId>flow</artifactId> <version>0.21</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.github.TrustedDataFramework</groupId> <artifactId>java-rlp</artifactId> <version>1.1.20</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk15on</artifactId> <version>1.69</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.module</groupId> <artifactId>jackson-module-kotlin</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> <version>1.5.10</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.8.2</version> <scope>compile</scope> <optional>true</optional> </dependency> </dependencies> </project>