diff --git a/quickstart-get-started.html b/quickstart-get-started.html index 9ffe9f5a..7eb89a93 100644 --- a/quickstart-get-started.html +++ b/quickstart-get-started.html @@ -132,7 +132,7 @@
scala-cli repl \
- --dependency app.fmgp::did::0.1.0-M15+31-e65a1e81-SNAPSHOT \
- --dependency app.fmgp::did-imp::0.1.0-M15+31-e65a1e81-SNAPSHOT \
- --dependency app.fmgp::did-method-peer::0.1.0-M15+31-e65a1e81-SNAPSHOT \
+ --dependency app.fmgp::did::0.1.0-M15+35-e228ecef-SNAPSHOT \
+ --dependency app.fmgp::did-imp::0.1.0-M15+35-e228ecef-SNAPSHOT \
+ --dependency app.fmgp::did-method-peer::0.1.0-M15+35-e228ecef-SNAPSHOT \
--repo https://oss.sonatype.org/content/repositories/releases
# For snapshots use
@@ -139,19 +139,19 @@ SBT setup
To install the library on sbt
, you can use the following lines to your build.sbt
:
- libraryDependencies += "app.fmgp" %% "did" % 0.1.0-M15+31-e65a1e81-SNAPSHOT
- libraryDependencies += "app.fmgp" %% "did-imp" % 0.1.0-M15+31-e65a1e81-SNAPSHOT // for the DIDComm implementation
- libraryDependencies += "app.fmgp" %% "did-resolver-peer" % 0.1.0-M15+31-e65a1e81-SNAPSHOT // for hash utils
+ libraryDependencies += "app.fmgp" %% "did" % 0.1.0-M15+35-e228ecef-SNAPSHOT
+ libraryDependencies += "app.fmgp" %% "did-imp" % 0.1.0-M15+35-e228ecef-SNAPSHOT // for the DIDComm implementation
+ libraryDependencies += "app.fmgp" %% "did-resolver-peer" % 0.1.0-M15+35-e228ecef-SNAPSHOT // for hash utils
In a crossProject for the JSPlatform and JVMPlatform this shoud use this instead:
- libraryDependencies += "app.fmgp" %%% "did" % 0.1.0-M15+31-e65a1e81-SNAPSHOT
- libraryDependencies += "app.fmgp" %%% "did-imp" % 0.1.0-M15+31-e65a1e81-SNAPSHOT // for the DIDComm implementation
- libraryDependencies += "app.fmgp" %%% "did-resolver-peer" % 0.1.0-M15+31-e65a1e81-SNAPSHOT // for hash utils
+ libraryDependencies += "app.fmgp" %%% "did" % 0.1.0-M15+35-e228ecef-SNAPSHOT
+ libraryDependencies += "app.fmgp" %%% "did-imp" % 0.1.0-M15+35-e228ecef-SNAPSHOT // for the DIDComm implementation
+ libraryDependencies += "app.fmgp" %%% "did-resolver-peer" % 0.1.0-M15+35-e228ecef-SNAPSHOT // for hash utils
Coursier Download
- coursier fetch app.fmgp:did_3:0.1.0-M15+31-e65a1e81-SNAPSHOT -r sonatype:snapshots
+ coursier fetch app.fmgp:did_3:0.1.0-M15+35-e228ecef-SNAPSHOT -r sonatype:snapshots
# -r https://oss.sonatype.org/content/repositories/snapshots
-coursier fetch app.fmgp:did_3:0.1.0-M15+31-e65a1e81-SNAPSHOT -r sonatype:public
+coursier fetch app.fmgp:did_3:0.1.0-M15+35-e228ecef-SNAPSHOT -r sonatype:public
# -r https://oss.sonatype.org/content/repositories/releases
diff --git a/readme.html b/readme.html
index 5e703896..0e109a15 100644
--- a/readme.html
+++ b/readme.html
@@ -125,12 +125,12 @@ Scala-did
Getting Started with Scala-did
To install ScalaDID in a scala project
- libraryDependencies += "app.fmgp" %% "did" % 0.1.0-M15+31-e65a1e81-SNAPSHOT // for DID and DID Comm
- libraryDependencies += "app.fmgp" %% "did-imp" % 0.1.0-M15+31-e65a1e81-SNAPSHOT // for crypto implementation
- libraryDependencies += "app.fmgp" %% "did-framework" % 0.1.0-M15+31-e65a1e81-SNAPSHOT //for utils
- libraryDependencies += "app.fmgp" %% "did-peer" % 0.1.0-M15+31-e65a1e81-SNAPSHOT // for resolver of the did method `peer`
- libraryDependencies += "app.fmgp" %% "did-web" % 0.1.0-M15+31-e65a1e81-SNAPSHOT // for resolver the did method `web`
- libraryDependencies += "app.fmgp" %% "did-uniresolver" % 0.1.0-M15+31-e65a1e81-SNAPSHOT // for calling the resolver uniresolver
+ libraryDependencies += "app.fmgp" %% "did" % 0.1.0-M15+35-e228ecef-SNAPSHOT // for DID and DID Comm
+ libraryDependencies += "app.fmgp" %% "did-imp" % 0.1.0-M15+35-e228ecef-SNAPSHOT // for crypto implementation
+ libraryDependencies += "app.fmgp" %% "did-framework" % 0.1.0-M15+35-e228ecef-SNAPSHOT //for utils
+ libraryDependencies += "app.fmgp" %% "did-peer" % 0.1.0-M15+35-e228ecef-SNAPSHOT // for resolver of the did method `peer`
+ libraryDependencies += "app.fmgp" %% "did-web" % 0.1.0-M15+35-e228ecef-SNAPSHOT // for resolver the did method `web`
+ libraryDependencies += "app.fmgp" %% "did-uniresolver" % 0.1.0-M15+35-e228ecef-SNAPSHOT // for calling the resolver uniresolver
In a crossProject for the JSPlatform and JVMPlatform this should be %%%
instead of %%
Site Map