-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
45 lines (32 loc) · 1.1 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
name := "cats-circuit-breaker"
version := "0.1"
scalaVersion := "2.12.8"
crossScalaVersions := Seq("2.11.12", "2.12.8")
organization := "com.github.ayushworks"
publishArtifact in Test := false
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-core" % "1.6.0",
"org.typelevel" %% "cats-effect" % "1.1.0",
"org.scalatest" %% "scalatest" % "3.0.1",
"co.fs2" %% "fs2-core" % "2.0.0"
)
homepage := Some(url("https://github.com/ayushworks/pariksha"))
scmInfo := Some(ScmInfo(url("https://github.com/ayushworks/pariksha"), "scm:git:[email protected]:ayushworks/pariksha.git"))
publishMavenStyle := true
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (version.value.trim.endsWith("SNAPSHOT"))
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
licenses := Seq("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0"))
pomExtra := (
<developers>
<developer>
<id>ayushworks</id>
<name>ayush</name>
<url>http://github.com/ayushworks</url>
</developer>
</developers>
)