From fcf7e08813b609f181b411822a78931b7ca76691 Mon Sep 17 00:00:00 2001 From: Dmitry Kurinskiy Date: Wed, 23 Jan 2019 21:30:50 +0300 Subject: [PATCH] Updated dependencies (#3) --- README.md | 3 +-- build.sbt | 12 ++++++------ project/build.properties | 2 +- project/plugins.sbt | 18 +++++++++--------- 4 files changed, 17 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index cfce73c..e82b6a0 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,4 @@ [![Build Status](https://travis-ci.org/fluencelabs/crypto.svg?branch=master)](https://travis-ci.org/fluencelabs/crypto) -[![Gitter](https://badges.gitter.im/fluencelabs/crypto.svg)](https://gitter.im/fluencelabs/crypto?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) # Сrypto @@ -45,7 +44,7 @@ Simplified JWT implementation, meaning a JSON-serialized header and claim with s // Bintray repo is used so far. Migration to Maven Central is planned resolvers += Resolver.bintrayRepo("fluencelabs", "releases") -val cryptoV = "0.0.1" +val cryptoV = "0.0.3" libraryDependencies ++= Seq( "one.fluence" %%% "crypto-core" % cryptoV, // basic types and APIs diff --git a/build.sbt b/build.sbt index ecd6a52..c608635 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ import de.heikoseeberger.sbtheader.License import org.scalajs.sbtplugin.ScalaJSPlugin.autoImport._ -import sbtcrossproject.crossProject +import sbtcrossproject.CrossPlugin.autoImport.crossProject name := "crypto" @@ -10,11 +10,11 @@ javaOptions in Test ++= Seq("-ea") skip in publish := true // Skip root project -val scalaV = scalaVersion := "2.12.5" +val scalaV = scalaVersion := "2.12.8" val commons = Seq( scalaV, - version := "0.0.2", + version := "0.0.3", fork in Test := true, parallelExecution in Test := false, organization := "one.fluence", @@ -31,15 +31,15 @@ val commons = Seq( commons -val CodecV = "0.0.3" +val CodecV = "0.0.4" -val CatsEffectV = "1.0.0-RC3" +val CatsEffectV = "1.2.0" val SloggingV = "0.6.1" val ScalatestV = "3.0.+" -val bouncyCastle = "org.bouncycastle" % "bcprov-jdk15on" % "1.59" +val bouncyCastle = "org.bouncycastle" % "bcprov-jdk15on" % "1.60" enablePlugins(AutomateHeaderPlugin) diff --git a/project/build.properties b/project/build.properties index 2daea37..dca663d 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.2.1 +sbt.version = 1.2.8 diff --git a/project/plugins.sbt b/project/plugins.sbt index 5a08b16..749ff02 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,15 +1,15 @@ -addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "1.4.0") +addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "1.5.1") -addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.3.2") +addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.3.15") -addSbtPlugin("de.heikoseeberger" % "sbt-header" % "4.1.0") +addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.0.0") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.22") -addSbtPlugin("org.portable-scala" % "sbt-crossproject" % "0.3.1") -addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "0.3.1") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.26") +addSbtPlugin("org.portable-scala" % "sbt-crossproject" % "0.6.0") +addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "0.6.0") -addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.10.0") +addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.13.1") -addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.0") +addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.2") -addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4") \ No newline at end of file +addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")