mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2024-11-20 02:11:40 +01:00
0309675528
- separate Java source copied from libsecp256k1 into separate module - split main module into core core-gen core-test - generators can be published separated to core code for use in 3rd-party tests - code coverage needs to be aggregated
21 lines
442 B
Scala
21 lines
442 B
Scala
|
|
name := "bitcoin-s-core"
|
|
|
|
libraryDependencies ++= Deps.core
|
|
|
|
testOptions in Test += Tests.Argument(TestFrameworks.ScalaCheck, "-verbosity", "2")
|
|
|
|
//test in assembly := {}
|
|
|
|
//testOptions in Test += Tests.Argument("-oF")
|
|
|
|
//parallelExecution in Test := false
|
|
|
|
coverageExcludedPackages := ".*gen"
|
|
|
|
coverageMinimum := 90
|
|
|
|
coverageFailOnMinimum := true
|
|
|
|
assemblyOption in assembly := (assemblyOption in assembly).value.copy(includeScala = false)
|