-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbuild.sbt
54 lines (43 loc) · 1.38 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
49
50
51
52
53
54
name := "swiftlearner"
organization := "com.danylchuk"
version := "0.2.7"
scalaVersion := "2.11.8"
resolvers ++= Seq(
"scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"
)
libraryDependencies ++= Seq(
"com.typesafe.scala-logging" %% "scala-logging" % "3.4.0",
"ch.qos.logback" % "logback-classic" % "1.1.7",
"org.specs2" %% "specs2-core" % "3.8.4" % "test"
)
parallelExecution in Test := false
publishMavenStyle := true
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (isSnapshot.value)
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
publishArtifact in Test := false
pomIncludeRepository := { _ => false }
pomExtra := (
<url>https://github.com/valdanylchuk/swiftlearner</url>
<licenses>
<license>
<name>BSD-style</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>git@github.com:valdanylchuk/swiftlearner.git</url>
<connection>scm:git:git@github.com:valdanylchuk/swiftlearner.git</connection>
</scm>
<developers>
<developer>
<id>valdanylchuk</id>
<name>Valentyn Danylchuk</name>
<url>http://danylchuk.com</url>
</developer>
</developers>)