MVN

com.github.davidbolet.jpascalcoin : jPascalcoin

Maven & Gradle

Jun 13, 2018
3 stars

jPascalcoin · JPascalCoin is a Java library for PascalCoin. Currently only the JSON-RPC API is supported. It's intended to be used both on Android or Java (java 1.7 is requiered). Uses google gson library for json deserialization and retrofit for rest calls. For logging purposes, uses java.util.logging, as it works by default on both Android and pure Java.

<dependency>
    <groupId>com.github.davidbolet.jpascalcoin</groupId>
    <artifactId>jPascalcoin</artifactId>
    <version>3.0.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.davidbolet.jpascalcoin : jPascalcoin to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 3.0.1

All Versions

Choose a version of com.github.davidbolet.jpascalcoin : jPascalcoin to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
3.0.x
jPascalcoin-3.0.1
2.1.x
jPascalcoin-2.1.9
jPascalcoin-2.1.8
jPascalcoin-2.1.6
1.0.x
jPascalcoin-1.0.2

How to add a dependency to Maven

Add the following com.github.davidbolet.jpascalcoin : jPascalcoin maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.github.davidbolet.jpascalcoin</groupId>
    <artifactId>jPascalcoin</artifactId>
    <version>3.0.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.davidbolet.jpascalcoin : jPascalcoin gradle dependency to your build.gradle file:

implementation 'com.github.davidbolet.jpascalcoin:jPascalcoin:3.0.1'

Gradle Kotlin DSL: Add the following com.github.davidbolet.jpascalcoin : jPascalcoin gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.davidbolet.jpascalcoin:jPascalcoin:3.0.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.davidbolet.jpascalcoin : jPascalcoin sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.davidbolet.jpascalcoin" % "jPascalcoin" % "3.0.1"