forked from input-output-hk/scrypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
48 lines (36 loc) · 1.3 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
organization := "org.scorexfoundation"
name := "scrypto"
version := "1.2.0"
scalaVersion := "2.12.1"
crossScalaVersions := Seq("2.11.8", "2.12.1")
libraryDependencies ++= Seq(
"com.chuusai" %% "shapeless" % "2.+",
"com.google.guava" % "guava" % "19.+",
"org.scalatest" %% "scalatest" % "3.+" % "test",
"org.scalacheck" %% "scalacheck" % "1.13.+" % "test",
"org.slf4j" % "slf4j-api" % "1.+",
"org.whispersystems" % "curve25519-java" % "+"
)
//scalacOptions ++= Seq("-Xdisable-assertions")
licenses := Seq("CC0" -> url("https://creativecommons.org/publicdomain/zero/1.0/legalcode"))
homepage := Some(url("https://github.com/ScorexProject/scrypto"))
publishMavenStyle := true
publishArtifact in Test := false
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (isSnapshot.value) Some("snapshots" at nexus + "content/repositories/snapshots")
else Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
pomIncludeRepository := { _ => false }
pomExtra :=
<scm>
<url>[email protected]:ScorexProject/scrypto.git</url>
<connection>scm:git:[email protected]:ScorexProject/scrypto.git</connection>
</scm>
<developers>
<developer>
<id>kushti</id>
<name>Alexander Chepurnoy</name>
<url>http://chepurnoy.org/</url>
</developer>
</developers>