forked from fooblahblah/statsd-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
36 lines (24 loc) · 1.09 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
// Project info
name := "statsd-client"
// So that we can publish it into Sonatype
organization := "com.victorops.statsd"
version := "1.0.0"
// The version comes from version.sbt, and is generated by the release plugin
parallelExecution in Test := false
scalaVersion := "2.11.7"
resolvers ++= Seq(
DefaultMavenRepository,
Resolver.url("Play", url("http://download.playframework.org/ivy-releases/"))(Resolver.ivyStylePatterns),
"Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/",
"Typesafe Other Repository" at "http://repo.typesafe.com/typesafe/repo/",
Resolver.url("sbt-plugin-releases", url("http://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-releases/"))(Resolver.ivyStylePatterns)
)
// Test dependencies
libraryDependencies ++= Seq(
"com.typesafe" % "config" % "1.0.2",
"org.slf4j" % "slf4j-api" % "1.7.2",
"junit" % "junit" % "4.11" % "test",
"org.specs2" % "specs2_2.10" % "2.3.12" % "test"
)
bintrayOrganization := Some("victorops")
licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0"))