-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.sbt
30 lines (27 loc) · 911 Bytes
/
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
name := "scalacheck-cats"
organization := "io.github.amrhassan"
scalaVersion := "2.12.7"
crossScalaVersions := Seq("2.11.12", scalaVersion.value)
releasePublishArtifactsAction := PgpKeys.publishSigned.value
releaseCrossBuild := true
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-core" % "1.4.0",
"org.scalacheck" %% "scalacheck" % "1.14.0"
)
publishTo := Some(
if (isSnapshot.value)
Opts.resolver.sonatypeSnapshots
else
Opts.resolver.sonatypeStaging
)
licenses := Seq("MIT" -> url("http://www.opensource.org/licenses/mit-license.php"))
homepage := Some(url("https://amrhassan.github.io/scalacheck-cats"))
scmInfo := Some(
ScmInfo(
url("https://github.com/amrhassan/scalacheck-cats"),
"scm:git@github.com:amrhassan/scalacheck-cats.git"
)
)
developers := List(
Developer(id="amrhassan", name="Amr Hassan", email="amr.hassan@gmail.com", url=url("http://amrhassan.info"))
)