mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2024-11-19 18:02:54 +01:00
205 lines
4.5 KiB
Scala
205 lines
4.5 KiB
Scala
import sbt.Credentials
|
|
import sbt.Keys.publishTo
|
|
import com.typesafe.sbt.SbtGit.GitKeys._
|
|
|
|
|
|
cancelable in Global := true
|
|
|
|
lazy val commonCompilerOpts = {
|
|
List(
|
|
"-Xmax-classfile-name",
|
|
"128"
|
|
)
|
|
}
|
|
//https://docs.scala-lang.org/overviews/compiler-options/index.html
|
|
lazy val compilerOpts = Seq(
|
|
"-target:jvm-1.8",
|
|
"-encoding",
|
|
"UTF-8",
|
|
"-unchecked",
|
|
"-feature",
|
|
"-deprecation",
|
|
"-Xfuture",
|
|
"-Ywarn-dead-code",
|
|
"-Ywarn-unused-import",
|
|
"-Ywarn-value-discard",
|
|
"-Ywarn-unused",
|
|
"-unchecked",
|
|
"-deprecation",
|
|
"-feature"
|
|
) ++ commonCompilerOpts
|
|
|
|
lazy val testCompilerOpts = commonCompilerOpts
|
|
|
|
|
|
|
|
lazy val commonSettings = List(
|
|
scalacOptions in Compile := compilerOpts,
|
|
|
|
scalacOptions in Test := testCompilerOpts,
|
|
|
|
assemblyOption in assembly := (assemblyOption in assembly).value
|
|
.copy(includeScala = false),
|
|
|
|
bintrayOrganization := Some("bitcoin-s"),
|
|
|
|
bintrayRepository := "bitcoin-s-core",
|
|
|
|
licenses += ("MIT", url("http://opensource.org/licenses/MIT")),
|
|
|
|
resolvers += Resolver.bintrayRepo("bitcoin-s", "bitcoin-s-core"),
|
|
|
|
resolvers += Resolver.jcenterRepo,
|
|
|
|
resolvers += "oss-jfrog-artifactory-snapshot" at "https://oss.jfrog.org/artifactory/oss-snapshot-local",
|
|
|
|
credentials ++= List(
|
|
//for snapshot publishing
|
|
//http://szimano.org/automatic-deployments-to-jfrog-oss-and-bintrayjcentermaven-central-via-travis-ci-from-sbt/
|
|
Credentials(Path.userHome / ".bintray" / ".artifactory"),
|
|
|
|
//sbt bintray plugin
|
|
//release publshing
|
|
Credentials(Path.userHome / ".bintray" / ".credentials")
|
|
),
|
|
|
|
|
|
publishTo := {
|
|
//preserve the old bintray publishing stuff here
|
|
//we need to preserve it for the publishTo settings below
|
|
val bintrayPublish = publishTo.value
|
|
if (isSnapshot.value) {
|
|
Some("Artifactory Realm" at
|
|
"https://oss.jfrog.org/artifactory/oss-snapshot-local;build.timestamp=" + new java.util.Date().getTime)
|
|
} else {
|
|
bintrayPublish
|
|
}
|
|
},
|
|
|
|
bintrayReleaseOnPublish := !isSnapshot.value,
|
|
|
|
//fix for https://github.com/sbt/sbt/issues/3519
|
|
updateOptions := updateOptions.value.withGigahorse(false)
|
|
|
|
)
|
|
|
|
lazy val root = project
|
|
.in(file("."))
|
|
.aggregate(
|
|
secp256k1jni,
|
|
core,
|
|
coreTest,
|
|
zmq,
|
|
rpc,
|
|
bench,
|
|
eclairRpc,
|
|
testkit,
|
|
doc
|
|
)
|
|
.settings(commonSettings: _*)
|
|
.settings(crossScalaVersions := Nil)
|
|
.enablePlugins(ScalaUnidocPlugin, GhpagesPlugin)
|
|
.settings(
|
|
ScalaUnidoc / siteSubdirName := "latest/api",
|
|
addMappingsToSiteDir(ScalaUnidoc / packageDoc / mappings, ScalaUnidoc / siteSubdirName),
|
|
gitRemoteRepo := "git@github.com:bitcoin-s/bitcoin-s-core.git"
|
|
)
|
|
|
|
|
|
lazy val secp256k1jni = project
|
|
.in(file("secp256k1jni"))
|
|
.settings(commonSettings: _*)
|
|
.settings(
|
|
libraryDependencies ++= Deps.secp256k1jni,
|
|
unmanagedResourceDirectories in Compile += baseDirectory.value / "natives",
|
|
//since this is not a scala module, we have no code coverage
|
|
//this also doesn't place nice with scoverage, see
|
|
//https://github.com/scoverage/sbt-scoverage/issues/275
|
|
coverageEnabled := false
|
|
)
|
|
.enablePlugins()
|
|
|
|
lazy val core = project
|
|
.in(file("core"))
|
|
.enablePlugins()
|
|
.settings(commonSettings: _*)
|
|
.dependsOn(
|
|
secp256k1jni
|
|
)
|
|
|
|
lazy val coreTest = project
|
|
.in(file("core-test"))
|
|
.enablePlugins()
|
|
.settings(commonSettings: _*)
|
|
.settings(skip in publish := true)
|
|
.dependsOn(
|
|
core,
|
|
)
|
|
|
|
lazy val zmq = project
|
|
.in(file("zmq"))
|
|
.enablePlugins()
|
|
.settings(commonSettings: _*)
|
|
.dependsOn(
|
|
core
|
|
)
|
|
|
|
lazy val rpc = project
|
|
.in(file("rpc"))
|
|
.enablePlugins()
|
|
.settings(commonSettings: _*)
|
|
.dependsOn(
|
|
core
|
|
)
|
|
|
|
lazy val bench = project
|
|
.in(file("bench"))
|
|
.enablePlugins()
|
|
.settings(assemblyOption in assembly := (assemblyOption in assembly).value
|
|
.copy(includeScala = true))
|
|
.settings(commonSettings: _*)
|
|
.settings(
|
|
libraryDependencies ++= Deps.bench,
|
|
name := "bitcoin-s-bench",
|
|
skip in publish := true
|
|
)
|
|
.dependsOn(core)
|
|
|
|
lazy val eclairRpc = project
|
|
.in(file("eclair-rpc"))
|
|
.enablePlugins()
|
|
.settings(commonSettings: _*)
|
|
.dependsOn(
|
|
core,
|
|
rpc
|
|
)
|
|
|
|
lazy val testkit = project
|
|
.in(file("testkit"))
|
|
.enablePlugins()
|
|
.settings(commonSettings: _*)
|
|
.dependsOn(
|
|
core,
|
|
rpc,
|
|
eclairRpc
|
|
)
|
|
|
|
|
|
lazy val doc = project
|
|
.in(file("doc"))
|
|
.settings(
|
|
name := "bitcoin-s-doc",
|
|
libraryDependencies ++= Deps.doc,
|
|
skip in publish := true
|
|
)
|
|
.dependsOn(
|
|
secp256k1jni,
|
|
core
|
|
)
|
|
|
|
publishArtifact in root := false
|
|
|
|
previewSite / aggregate := false
|
|
previewAuto / aggregate := false
|
|
previewSite / aggregate := false
|