-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
33 lines (28 loc) · 897 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
lazy val root = (project in file("."))
.enablePlugins(SbtPlugin)
.settings(
organization := "de.wayofquality.blended",
name := "sbt-blendedcontainer",
version := "0.1-SNAPSHOT",
licenses += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0.html")),
scalaVersion := "2.12.8",
scalacOptions ++= Seq(
"-unchecked",
"-deprecation",
"-Xlint",
"-encoding", "UTF-8"
),
libraryDependencies ++= Seq(
Dependencies.sbtFilterResources.value,
Dependencies.sbtNativePackager.value,
Dependencies.sbtBlendedFeature.value
),
// Scripted plugin allows us the integration test the sbt plugin
scriptedLaunchOpts ++= Seq(
"-Xmx1024m",
s"-Dplugin.org=${organization.value}",
s"-Dplugin.name=${name.value}",
s"-Dplugin.version=${version.value}"
),
scriptedBufferLog := false
)