-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
48 lines (34 loc) · 1.03 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
import sbt.Keys._
organization := "cc.redberry"
name := "algebench"
version := "1.1"
scalaVersion := "2.12.3"
moduleName := name.value
resolvers += Resolver.mavenLocal
libraryDependencies ++= Seq(
"cc.redberry" %% "rings.scaladsl" % "2.3.1",
"junit" % "junit" % "4.12" % Test,
"com.novocode" % "junit-interface" % "0.11" % Test exclude("junit", "junit-dep"),
"org.rogach" %% "scallop" % "3.1.2",
"org.scala-lang.modules" %% "scala-xml" % "1.1.0"
)
val circeVersion = "0.9.1"
libraryDependencies ++= Seq(
"io.circe" %% "circe-core",
"io.circe" %% "circe-generic",
"io.circe" %% "circe-parser"
).map(_ % circeVersion)
addCompilerPlugin("org.scalamacros" %% "paradise" % "2.1.0" cross CrossVersion.full)
publishTo := Some(
if (isSnapshot.value)
Opts.resolver.sonatypeSnapshots
else
Opts.resolver.sonatypeStaging
)
import sbtrelease.ReleasePlugin.autoImport.ReleaseTransformations._
releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies,
runClean,
//runTest,
releaseStepCommand("publishSigned")
)