-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
37 lines (27 loc) · 1014 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
31
32
33
34
35
36
37
name := "scakoo"
version := "0.4.1"
scalaVersion := "2.12.8"
organization := "com.github.oskin1"
libraryDependencies ++= Seq(
"com.google.guava" % "guava" % "23.0",
"org.scalatest" %% "scalatest" % "3.0.+" % "test",
"org.scalacheck" %% "scalacheck" % "1.14.+" % "test",
"com.storm-enroute" %% "scalameter" % "0.8.+" % "test"
)
licenses in ThisBuild := Seq("GNU GPL 3.0" -> url("https://github.com/oskin1/CuckooScala/blob/master/LICENSE"))
homepage in ThisBuild := Some(url("https://github.com/oskin1/CuckooScala"))
publishMavenStyle in ThisBuild := true
publishArtifact in Test := false
publishTo in ThisBuild :=
Some(if (isSnapshot.value) Opts.resolver.sonatypeSnapshots else Opts.resolver.sonatypeStaging)
pomExtra in ThisBuild :=
<scm>
<url>git@github.com:oskin1/CuckooScala.git</url>
<connection>scm:git:git@github.com:oskin1/CuckooScala.git</connection>
</scm>
<developers>
<developer>
<id>Oskin1</id>
<name>Ilya Oskin</name>
</developer>
</developers>