MVN

com.exonum.client : exonum-light-client

Maven & Gradle

Apr 06, 2020
63 stars

Exonum Java Light Client · The Exonum light client library to work with Exonum blockchain. Can be used to create and submit transactions to blockchain.

<dependency>
    <groupId>com.exonum.client</groupId>
    <artifactId>exonum-light-client</artifactId>
    <version>0.6.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.exonum.client : exonum-light-client to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.6.0

All Versions

Choose a version of com.exonum.client : exonum-light-client to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.6.x
exonum-light-client-0.6.0
0.5.x
exonum-light-client-0.5.0
0.4.x
exonum-light-client-0.4.0
0.3.x
exonum-light-client-0.3.0
0.2.x
exonum-light-client-0.2.0
0.1.x
exonum-light-client-0.1.0

How to add a dependency to Maven

Add the following com.exonum.client : exonum-light-client maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.exonum.client</groupId>
    <artifactId>exonum-light-client</artifactId>
    <version>0.6.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.exonum.client : exonum-light-client gradle dependency to your build.gradle file:

implementation 'com.exonum.client:exonum-light-client:0.6.0'

Gradle Kotlin DSL: Add the following com.exonum.client : exonum-light-client gradle kotlin dependency to your build.gradle.kts file:

implementation("com.exonum.client:exonum-light-client:0.6.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.exonum.client : exonum-light-client sbt scala dependency to your build.sbt file:

libraryDependencies += "com.exonum.client" % "exonum-light-client" % "0.6.0"

Advertisement