-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
38 lines (25 loc) · 875 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
34
35
36
37
38
name := "sbt-jfr"
organization := "nl.zolotko.sbt"
licenses := Seq("Apache-2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0.txt"))
homepage := Some(url("https://github.com/azolotko/sbt-jfr"))
developers := List(
Developer("azolotko", "Alex Zolotko", "[email protected]", url("https://github.com/azolotko"))
)
scmInfo := Some(
ScmInfo(
url("https://github.com/azolotko/sbt-jfr"),
"scm:git:https://github.com/azolotko/sbt-jfr.git",
Some("scm:git:[email protected]:azolotko/sbt-jfr.git")
)
)
sbtPlugin := true
scalacOptions += "-target:jvm-1.8"
enablePlugins(SbtPlugin)
scriptedBufferLog := false
scriptedLaunchOpts := (
scriptedLaunchOpts.value ++
Seq("-Xmx1g", "-Dsbt.jfr.version=" + version.value)
)
publishTo := sonatypePublishToBundle.value
sonatypeCredentialHost := "s01.oss.sonatype.org"
sonatypeProfileName := "nl.zolotko.sbt"