-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbuild.sbt
61 lines (46 loc) · 1.81 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
56
57
58
59
60
61
sbtPlugin := true
organization := "com.github.hochgi"
name := "sbt-cassandra"
description := "SBT plugin to allow launching Cassandra during tests, and test your application against it"
version := "0.9.1"
scalaVersion := "2.12.4"
libraryDependencies ++= Seq("org.apache.thrift" % "libthrift" % "0.11.0" exclude("commons-logging","commons-logging"),
"org.slf4j" % "slf4j-api" % "1.7.25",
"org.slf4j" % "jcl-over-slf4j" % "1.7.25",
"org.yaml" % "snakeyaml" % "1.19",
"net.leibman" %% "semverfi" % "0.2.0")
scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-language:postfixOps")
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (isSnapshot.value) Some("snapshots" at nexus + "content/repositories/snapshots")
else Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
publishMavenStyle := true
publishArtifact in Test := false
publishArtifact in (Compile, packageSrc) := true
pomIncludeRepository := { x => false }
homepage := Some(url("http://github.com/hochgi/sbt-cassandra-plugin"))
licenses := Seq("The MIT License (MIT)" -> url("http://opensource.org/licenses/MIT"))
pomExtra := (
<scm>
<url>https://github.com/hochgi/sbt-cassandra.git</url>
<connection>scm:git@github.com:hochgi/sbt-cassandra.git</connection>
</scm>
<developers>
<developer>
<id>hochgi</id>
<name>Gilad Hoch</name>
<url>http://blog.hochgi.com</url>
</developer>
</developers>
<contributors>
<contributor>
<name>Rohit Rai</name>
<url>http://www.twitter.com/milliondreams</url>
</contributor>
<contributor>
<name>Shiti Saxena</name>
<url>https://twitter.com/eraoferrors</url>
</contributor>
</contributors>
)