From 4858a6cbc2d5d16abca42afced539e9f0e9639b9 Mon Sep 17 00:00:00 2001 From: sken Date: Thu, 14 May 2020 14:40:34 -0700 Subject: [PATCH] update version --- build.sbt | 18 ++++++++++++++---- project/plugins.sbt | 1 + 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/build.sbt b/build.sbt index 388229e..54093f4 100644 --- a/build.sbt +++ b/build.sbt @@ -1,18 +1,28 @@ name := "BLAKE3jni" -version := "0.0.1" +version := "0.1.0" organization := "org.scash" -scmInfo := Some(ScmInfo(url("https://github.com/sken77/BLAKE3jni"), "git@github.com:sken77/BLAKE3jni.git")) +licenses += ("Apache-2.0", url( + "https://www.apache.org/licenses/LICENSE-2.0.txt" +)) -bintrayPackageLabels := Seq("cryptography", "BLAKE3", "p2p", "blockchain") +scmInfo := Some( + ScmInfo( + url("https://github.com/sken77/BLAKE3jni"), + "git@github.com:sken77/BLAKE3jni.git" + ) +) + +bintrayPackageLabels := Seq("cryptography", "BLAKE3") bintrayOrganization := Some("scala-cash") bintrayRepository := "io" libraryDependencies ++= List( "com.novocode" % "junit-interface" % "0.11" % "test", - "org.scijava" % "native-lib-loader" % "2.3.4" + "org.scijava" % "native-lib-loader" % "2.3.4", + "org.slf4j" % "slf4j-nop" % "1.7.30" ) Compile / unmanagedResourceDirectories += baseDirectory.value / "natives" diff --git a/project/plugins.sbt b/project/plugins.sbt index 93d2ef0..82e5079 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1 +1,2 @@ addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.6") +addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.0")