-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.sbt
More file actions
51 lines (34 loc) · 1.05 KB
/
build.sbt
File metadata and controls
51 lines (34 loc) · 1.05 KB
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
name := "lib-text"
organization := "com.peoplepattern"
scalaVersion := "2.10.6"
scalacOptions in ThisBuild ++= Seq(
"-unchecked",
"-feature",
"-deprecation",
"-language:_",
"-Xlint",
"-Xfatal-warnings",
"-Ywarn-dead-code",
"-target:jvm-1.7",
"-encoding",
"UTF-8"
)
libraryDependencies ++= Seq(
"com.carrotsearch" % "langid-java" % "1.0.0",
"com.typesafe" % "config" % "1.3.0",
"com.atilika.kuromoji" % "kuromoji-ipadic" % "0.9.0",
"org.scalatest" %% "scalatest" % "2.2.5" % "test"
)
initialCommands := "import com.peoplepattern.text._"
scalariformSettings
licenses := Seq("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0"))
homepage := Some(url("http://peoplepattern.github.io/lib-text"))
crossScalaVersions := Seq("2.10.6", "2.11.7")
releaseCrossBuild := true
bintrayOrganization := Some("peoplepattern")
bintrayReleaseOnPublish := true
site.settings
site.includeScaladoc()
ghpages.settings
git.remoteRepo := "git@github.com:peoplepattern/lib-text.git"
site.jekyllSupport()