client


License

License

Categories

Categories

CLI User Interface
GroupId

GroupId

com.ubirch.notary
ArtifactId

ArtifactId

client_2.11
Last Version

Last Version

0.3.3
Release Date

Release Date

Type

Type

jar
Description

Description

client
client
Project URL

Project URL

http://ubirch.com
Project Organization

Project Organization

com.ubirch.notary
Source Code Management

Source Code Management

https://github.com/ubirch/ubirch-notary-service

Download client_2.11

How to add to project

<!-- https://jarcasting.com/artifacts/com.ubirch.notary/client_2.11/ -->
<dependency>
    <groupId>com.ubirch.notary</groupId>
    <artifactId>client_2.11</artifactId>
    <version>0.3.3</version>
</dependency>
// https://jarcasting.com/artifacts/com.ubirch.notary/client_2.11/
implementation 'com.ubirch.notary:client_2.11:0.3.3'
// https://jarcasting.com/artifacts/com.ubirch.notary/client_2.11/
implementation ("com.ubirch.notary:client_2.11:0.3.3")
'com.ubirch.notary:client_2.11:jar:0.3.3'
<dependency org="com.ubirch.notary" name="client_2.11" rev="0.3.3">
  <artifact name="client_2.11" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.ubirch.notary', module='client_2.11', version='0.3.3')
)
libraryDependencies += "com.ubirch.notary" % "client_2.11" % "0.3.3"
[com.ubirch.notary/client_2.11 "0.3.3"]

Dependencies

compile (10)

Group / Artifact Type Version
org.scala-lang : scala-library jar 2.11.8
com.ubirch.notary : model_2.11 jar 0.3.3
uk.co.bigbeeconsultants » bee-client_2.11 jar 0.29.1
com.ubirch.util : config_2.11 jar 0.1
org.json4s : json4s-native_2.11 jar 3.4.2
com.ubirch.util : json-auto-convert_2.11 jar 0.3.2
org.slf4j : slf4j-api jar 1.7.21
com.typesafe.scala-logging : scala-logging-slf4j_2.11 jar 2.1.2
ch.qos.logback : logback-core jar 1.1.7
ch.qos.logback : logback-classic jar 1.1.7

test (2)

Group / Artifact Type Version
com.ubirch.util : crypto_2.11 jar 0.3.3
org.scalatest : scalatest_2.11 jar 3.0.1

Project Modules

There are no modules declared in this project.

ubirch Notary Service

General Information

This REST service allows us to notarize data using the Bitcoin Blockchain. The REST API is documented here: REST API with spray.

Scala Dependencies & Configs

model

resolvers ++= Seq(Resolver.sonatypeRepo("snapshots"))
libraryDependencies ++= Seq(
  "com.ubirch.notary" %% "model" % "0.3.4-SNAPSHOT"
)

core

resolvers ++= Seq(
  Resolver.sonatypeRepo("snapshots"),
  "RoundEights" at "http://maven.spikemark.net/roundeights" // Hasher
)
libraryDependencies ++= Seq(
  "com.ubirch.notary" %% "core" % "0.3.4-SNAPSHOT"
)

server

resolvers ++= Seq(Resolver.sonatypeRepo("snapshots"))
libraryDependencies ++= Seq(
  "com.ubirch.notary" %% "server" % "0.3.4-SNAPSHOT"
)

client

resolvers ++= Seq(
  Resolver.sonatypeRepo("snapshots"),
  Resolver.bintrayRepo("hseeberger", "maven"), // Seeberger Json
  Resolver.bintrayRepo("rick-beton", "maven"), // BeeClient
  "RoundEights" at "http://maven.spikemark.net/roundeights" // Hasher
)
libraryDependencies ++= Seq(
  "com.ubirch.notary" %% "client" % "0.3.4-SNAPSHOT"
)

You may configure which NotaryService the client calls by adding the test server to your config:

notaryService {
  client {
    url = "http://notary-dev.api.ubirch.com:8080/v1/notaryService/notarize"
  }
}

Release History

0.3.4 (tbd)

  • tbd

0.3.3 (2017-07-19)

  • update docker related code

0.3.1 (2017-02-28)

  • fixed assembly bug by removing a conflicting logging dependency

0.3.0 (2017-02-28)

  • update scalatest from 3.0.0 to 3.0.1
  • improved documentation: rest-spray.md
  • added field "txHashLink" to /notarize response

0.2.7 (2017-02-16)

  • upgrade to Akka 2.4.17

0.2.6 (2017-02-07)

  • update dependency: "com.ubirch.util:json-auto-convert" from 0.1 to 0.3.2
  • update json4s dependencies from 3.4.0 to 3.4.2
  • update dependency: "com.ubirch.util:crypto" from 0.2 to 0.3.3

0.2.5 (2016-11-18)

  • changed log imports to: com.typesafe.scalalogging.slf4j.StrictLogging
  • update logging dependencies to our current standard set:
lazy val scalaLogging = Seq(
  "org.slf4j" % "slf4j-api" % "1.7.21",
  "com.typesafe.scala-logging" %% "scala-logging-slf4j" % "2.1.2" exclude("org.slf4j", "slf4j-api"),
  "com.typesafe.scala-logging" %% "scala-logging" % "3.5.0" exclude("org.slf4j", "slf4j-api"),
  "ch.qos.logback" % "logback-core" % "1.1.7",
  "ch.qos.logback" % "logback-classic" % "1.1.7"
)

0.2.4 (2016-11-14)

  • use StrictLogging instead of LazyLogging
  • update dependency com.typesafe.scala-logging:scala-logging: 3.4.0 -> 3.5.0

0.2.3 (2016-11-01)

  • add Dockerfile generation
  • update to sbt 0.13.12

0.2.2 (2016-11-01)

  • added Tor Support
  • refactored module structure to conform with our coding conventions

Create Docker Image

./goBuild assembly && ./goBuild containerbuild

Links

A list of links that helped us with the OP_RETURN message:

Faucets:

com.ubirch.notary

ubirch GmbH

Versions

Version
0.3.3
0.3.2
0.3.1
0.3.0
0.2.7
0.2.6
0.2.5
0.2.4
0.2.3
0.2.2