This repository has been archived by the owner on Mar 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbuild.sbt
65 lines (46 loc) · 1.94 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
organization := "io.verizon.build"
name := "sbt-rig"
scalacOptions ++= Seq("-deprecation", "-feature")
sbtPlugin := true
ScriptedPlugin.scriptedSettings
scriptedLaunchOpts ++= Seq(
"-Xmx1024M",
"-Dplugin.version=" + version.value,
"-Dscripted=true")
scriptedBufferLog := false
fork := true
coverageEnabled := false
licenses := Seq("Apache-2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0.html"))
homepage := Some(url("https://github.com/verizon/sbt-rig"))
scmInfo := Some(ScmInfo(url("https://github.com/verizon/sbt-rig"),
"[email protected]:verizon/sbt-rig.git"))
// To sync with Maven central, you need to supply the following information:
pomExtra in Global := {
<developers>
<developer>
<id>timperrett</id>
<name>Timothy Perrett</name>
<url>github.com/timperrett</url>
</developer>
</developers>
}
sonatypeProfileName := "io.verizon"
pomPostProcess := { identity }
scalaVersion := "2.12.6"
sbtVersion in Global := "1.1.6"
scalaCompilerBridgeSource := {
val sv = appConfiguration.value.provider.id.version
("org.scala-sbt" % "compiler-interface" % sv % "component").sources
}
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.7.0")
addSbtPlugin("com.eed3si9n" % "sbt-unidoc" % "0.4.1")
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.6")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0")
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.3.1")
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.2")
addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.3.0")
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.1.3")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")
addSbtPlugin("org.tpolecat" % "tut-plugin" % "0.6.0")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.0")
addCommandAlias("validate", ";test;scripted")