-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.sbt
39 lines (39 loc) · 1.41 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
lazy val root = project
.in(file("."))
.settings(
name := "scalty",
scalaVersion := "2.12.4",
crossScalaVersions := Seq("2.12.4", "2.11.12"),
resolvers += "Artima Maven Repository" at "http://repo.artima.com/releases",
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-core" % "1.0.1",
"org.scalactic" %% "scalactic" % "3.0.0",
"org.scalacheck" %% "scalacheck" % "1.13.4" % "test",
"org.scalatest" %% "scalatest" % "3.0.0" % "test"
),
organization := "com.github.awesome-it-ternopil",
scalacOptions ++= Seq("-feature", "-deprecation", "-language:implicitConversions"),
publishTo := Some(
if (isSnapshot.value)
Opts.resolver.sonatypeSnapshots
else
Opts.resolver.sonatypeStaging
),
publishMavenStyle := true,
licenses += ("MIT license", url("http://opensource.org/licenses/MIT")),
pomExtra := (
<url>https://github.com/awesome-it-ternopil/scalty</url>
<scm>
<url>https://github.com/awesome-it-ternopil/scalty</url>
<connection>scm:[email protected]:awesome-it-ternopil/scalty.git</connection>
<developerConnection>scm:[email protected]:awesome-it-ternopil/scalty.git</developerConnection>
</scm>
<developers>
<developer>
<id>nkdev91</id>
<name>Nazar Kisil</name>
<email>[email protected]</email>
</developer>
</developers>
)
)