Skip to content

Commit d5fc425

Browse files
committed
Format .sbt files
1 parent 960778a commit d5fc425

File tree

3 files changed

+31
-10
lines changed

3 files changed

+31
-10
lines changed

build.sbt

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,30 @@ organization := "com.github.daniel-shuy"
44

55
name := "sbt-scripted-scalatest"
66

7-
licenses := Seq("Apache License, Version 2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt"))
7+
licenses := Seq(
8+
"Apache License, Version 2.0" -> url(
9+
"http://www.apache.org/licenses/LICENSE-2.0.txt"
10+
)
11+
)
812

9-
homepage := Some(url("https://github.com/daniel-shuy/scripted-scalatest-sbt-plugin"))
13+
homepage := Some(
14+
url("https://github.com/daniel-shuy/scripted-scalatest-sbt-plugin")
15+
)
1016

11-
scmInfo := Some(ScmInfo(
12-
url("https://github.com/daniel-shuy/scripted-scalatest-sbt-plugin"),
13-
"[email protected]:daniel-shuy/scripted-scalatest-sbt-plugin.git"
14-
))
17+
scmInfo := Some(
18+
ScmInfo(
19+
url("https://github.com/daniel-shuy/scripted-scalatest-sbt-plugin"),
20+
"[email protected]:daniel-shuy/scripted-scalatest-sbt-plugin.git"
21+
)
22+
)
1523

1624
developers := List(
17-
Developer("daniel-shuy", "Daniel Shuy", "[email protected]", url("https://github.com/daniel-shuy")),
25+
Developer(
26+
"daniel-shuy",
27+
"Daniel Shuy",
28+
29+
url("https://github.com/daniel-shuy")
30+
)
1831
)
1932

2033
crossSbtVersions := Seq(

publish.sbt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@ publishMavenStyle := false
22

33
bintrayRepository := "sbt-plugins"
44

5-
bintrayPackageLabels := Seq("sbt", "sbt-plugin", "sbt-test", "scripted", "scripted-plugin", "scalatest")
5+
bintrayPackageLabels := Seq(
6+
"sbt",
7+
"sbt-plugin",
8+
"sbt-test",
9+
"scripted",
10+
"scripted-plugin",
11+
"scalatest"
12+
)
613

714
bintrayReleaseOnPublish := false

scripted.sbt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
enablePlugins(SbtPlugin)
2-
scriptedLaunchOpts := { scriptedLaunchOpts.value ++
3-
Seq("-Xmx1024M", "-Dplugin.version=" + version.value)
2+
scriptedLaunchOpts := {
3+
scriptedLaunchOpts.value ++
4+
Seq("-Xmx1024M", "-Dplugin.version=" + version.value)
45
}
56
scriptedBufferLog := false

0 commit comments

Comments
 (0)