-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.sbt
55 lines (39 loc) · 1.52 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
55
libraryDependencies += "commons-io" % "commons-io" % "2.4"
libraryDependencies += "com.qifun" %% "stateless-future-util" % "0.5.0"
libraryDependencies += ("org.scala-stm" %% "scala-stm" % "0.7")
libraryDependencies += "com.novocode" % "junit-interface" % "0.10" % "test"
scalacOptions += "-feature"
scalacOptions in Compile in doc += "-groups"
name := "scala-bcp"
organization := "com.qifun"
version := "0.1.1-SNAPSHOT"
crossScalaVersions := Seq("2.10.4", "2.11.2")
homepage := Some(url(s"https://github.com/qifun/${name.value}"))
startYear := Some(2014)
licenses := Seq("Apache License, Version 2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0.html"))
publishTo <<= (isSnapshot) { isSnapshot: Boolean =>
if (isSnapshot)
Some("snapshots" at "https://oss.sonatype.org/content/repositories/snapshots")
else
Some("releases" at "https://oss.sonatype.org/service/local/staging/deploy/maven2")
}
scmInfo := Some(ScmInfo(
url(s"https://github.com/qifun/${name.value}"),
s"scm:git:git://github.com/qifun/${name.value}.git",
Some(s"scm:git:[email protected]:qifun/${name.value}.git")))
pomExtra :=
<developers>
<developer>
<id>Atry</id>
<name>杨博 (Yang Bo)</name>
<timezone>+8</timezone>
<email>[email protected]</email>
</developer>
<developer>
<id>chank</id>
<name>方里权 (Fang Liquan)</name>
<timezone>+8</timezone>
<email>[email protected]</email>
</developer>
</developers>
// vim: sts=2 sw=2 et