forked from databricks/sbt-databricks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
51 lines (37 loc) · 1.34 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
import bintray.Keys._
sbtPlugin := true
organization := "com.databricks"
name := "sbt-databricks"
version := "0.1.3-SNAPSHOT"
scalaVersion := "2.10.4"
libraryDependencies ++= Seq(
"org.apache.httpcomponents" % "httpclient" % "4.3.3",
"org.apache.httpcomponents" % "httpmime" % "4.3.3",
"org.apache.httpcomponents" % "httpclient-cache" % "4.3.3",
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.4.2",
"commons-fileupload" % "commons-fileupload" % "1.3")
version in ThisBuild := s"${version.value}"
organization in ThisBuild := s"${organization.value}"
licenses += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0.html"))
publishMavenStyle := false
bintrayPublishSettings
repository in bintray := "sbt-plugins"
bintrayOrganization in bintray := None
pomExtra := (
<url>https://github.com/databricks/sbt-databricks</url>
<scm>
<url>git@github.com:databricks/sbt-databricks.git</url>
<connection>scm:git:git@github.com:databricks/sbt-databricks.git</connection>
</scm>
<developers>
<developer>
<id>brkyvz</id>
<name>Burak Yavuz</name>
<url>https://github.com/brkyvz</url>
</developer>
<developer>
<id>marmbrus</id>
<name>Michael Armbrust</name>
<url>https://github.com/marmbrus</url>
</developer>
</developers>)