Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
sken committed May 14, 2020
1 parent 1bf44d3 commit 4858a6c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
18 changes: 14 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
1 change: 1 addition & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.6")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.0")

0 comments on commit 4858a6c

Please sign in to comment.