-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.sbt
53 lines (34 loc) · 1.11 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
import Deps._
name := "reactive-cassandra-phantom"
organization := "com.tecsisa"
// Versioning with git
enablePlugins(GitVersioning)
git.useGitDescribe := true
scalaVersion := "2.11.7"
crossScalaVersions := Seq("2.11.7", "2.10.5")
scalacOptions := Seq("-deprecation", "-target:jvm-1.8", "-encoding", "utf-8")
javacOptions := Seq("-g:none")
resolvers ++= Seq(
Resolver.bintrayRepo("websudos", "oss-releases")
)
libraryDependencies ++= {
Seq(
Akka.actor,
Akka.slf4j % "runtime",
Reactive.streams,
Phantom.dsl,
LoggingFrameworks.logBack,
Testing.scalaTest,
Reactive.streamsTck
)
}
parallelExecution in Test := false
publishMavenStyle := true
scmInfo := Some(ScmInfo(url("https://github.com/Tecsisa/reactive-cassandra-phantom.git"),
"[email protected]:Tecsisa/reactive-cassandra-phantom.git"))
licenses := Seq("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0.html"))
PhantomSbtPlugin.projectSettings
publishArtifact in (Test, packageDoc) := false
bintrayOrganization := Some("tecsisa")
bintrayRepository := "maven-bintray-repo"
scalariformSettings