-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.sbt
33 lines (25 loc) · 918 Bytes
/
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
name := "sbt-scalding-plugin"
organization := "com.danosipov"
sbtPlugin := true
scalaVersion := "2.10.5"
version := "1.0.5"
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.13.0")
import bintray.Keys._
lazy val commonSettings = Seq(
version in ThisBuild := version.value,
organization in ThisBuild := organization.value
)
lazy val root = (project in file(".")).
settings(commonSettings ++ bintrayPublishSettings: _*).
settings(
sbtPlugin := true,
name := name.value,
description := "TODO",
// This is an example. bintray-sbt requires licenses to be specified
// (using a canonical name).
licenses += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0.html")),
publishMavenStyle := false,
repository in bintray := "sbt-plugins",
vcsUrl in bintray := Some("git@github.com:danosipov/sbt-scalding-plugin"),
bintrayOrganization in bintray := None
)