-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
48 lines (42 loc) · 1.44 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
name := "miragesql-scala"
organization := "com.miragesql"
version := "2.0.0-SNAPSHOT"
scalaVersion := "2.12.4"
libraryDependencies ++= Seq(
"com.miragesql" % "miragesql" % "2.0.0" % "compile",
"org.json4s" %% "json4s-scalap" % "3.5.3",
"org.hsqldb" % "hsqldb" % "2.4.0" % "test",
"org.specs2" %% "specs2-core" % "4.0.1" % "test",
"org.mockito" % "mockito-core" % "2.11.0" % "test"
)
scalacOptions := Seq("-deprecation", "-feature")
parallelExecution in Test := false
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")
}
pomExtra := (
<url>https://github.com/mirage-sql/mirage-scala</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<url>https://github.com/mirage-sql/mirage-scala</url>
<connection>scm:git:https://github.com/mirage-sql/mirage-scala.git</connection>
</scm>
<developers>
<developer>
<id>takezoe</id>
<name>Naoki Takezoe</name>
<email>takezoe_at_gmail.com</email>
<timezone>+9</timezone>
</developer>
</developers>
)