-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
24 lines (22 loc) · 818 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
import Keys._
lazy val commonSettings = Seq(
version in ThisBuild := "0.0.2",
organization in ThisBuild := "me.rschatz",
libraryDependencies in ThisBuild ++= Seq(
"com.glassdoor.planout4j" % "planout4j-core" % "1.2",
"com.glassdoor.planout4j" % "planout4j-compiler" % "1.2",
"ch.qos.logback" % "logback-classic" % "1.2.3"
)
)
lazy val root = (project in file(".")).
settings(commonSettings).
settings(
sbtPlugin := true,
crossSbtVersions := Vector("0.13.18", "1.2.8"),
name := "sbt-planout4j",
description := "Compiles Planout4j yaml files to Planout language files",
licenses += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0.html")),
publishMavenStyle := false,
bintrayRepository := "sbt-plugins",
bintrayOrganization in bintray := None
)