Skip to content

Commit 579ed1a

Browse files
committed
codestyle: sbt: run scalafmt
Signed-off-by: Luís Ferreira <[email protected]>
1 parent 72f07ba commit 579ed1a

File tree

1 file changed

+22
-39
lines changed

1 file changed

+22
-39
lines changed

build.sbt

Lines changed: 22 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ organization := "com.codacy"
88
scalaVersion := scala212
99
crossScalaVersions := Seq(scala211, scala212, scala213)
1010

11-
libraryDependencies ++= Seq(
12-
"org.specs2" %% "specs2-core" % "4.6.0" % Test
13-
)
11+
libraryDependencies ++= Seq("org.specs2" %% "specs2-core" % "4.6.0" % Test)
1412

1513
unmanagedSourceDirectories in Compile += {
1614
val sourceDir = (sourceDirectory in Compile).value
@@ -21,52 +19,37 @@ unmanagedSourceDirectories in Compile += {
2119
}
2220

2321
// Sonatype repository settings
24-
ThisBuild / credentials += Credentials(
25-
"Sonatype Nexus Repository Manager",
26-
"oss.sonatype.org",
27-
sys.env.getOrElse("SONATYPE_USER", "username"),
28-
sys.env.getOrElse("SONATYPE_PASSWORD", "password")
29-
)
22+
ThisBuild / credentials += Credentials("Sonatype Nexus Repository Manager",
23+
"oss.sonatype.org",
24+
sys.env.getOrElse("SONATYPE_USER", "username"),
25+
sys.env.getOrElse("SONATYPE_PASSWORD", "password"))
3026
ThisBuild / organization := "com.codacy"
3127
ThisBuild / organizationName := "Codacy"
3228
ThisBuild / organizationHomepage := Some(url("https://www.codacy.com"))
3329

3430
ThisBuild / scmInfo := Some(
35-
ScmInfo(
36-
url("https://github.com/codacy/codacy-plugins-api"),
37-
"scm:[email protected]:codacy/codacy-plugins-api"
38-
)
39-
)
31+
ScmInfo(url("https://github.com/codacy/codacy-plugins-api"), "scm:[email protected]:codacy/codacy-plugins-api"))
4032
ThisBuild / developers := List(
41-
Developer(
42-
id = "johannegger",
43-
name = "Johann",
44-
email = "johann [at] codacy.com",
45-
url = url("https://github.com/johannegger")
46-
),
47-
Developer(
48-
id = "rtfpessoa",
49-
name = "Rodrigo Fernandes",
50-
email = "rodrigo [at] codacy.com",
51-
url = url("https://github.com/rtfpessoa")
52-
),
53-
Developer(
54-
id = "bmbferreira",
55-
name = "Bruno Ferreira",
56-
email = "bruno.ferreira [at] codacy.com",
57-
url = url("https://github.com/bmbferreira")
58-
),
33+
Developer(id = "johannegger",
34+
name = "Johann",
35+
email = "johann [at] codacy.com",
36+
url = url("https://github.com/johannegger")),
37+
Developer(id = "rtfpessoa",
38+
name = "Rodrigo Fernandes",
39+
email = "rodrigo [at] codacy.com",
40+
url = url("https://github.com/rtfpessoa")),
41+
Developer(id = "bmbferreira",
42+
name = "Bruno Ferreira",
43+
email = "bruno.ferreira [at] codacy.com",
44+
url = url("https://github.com/bmbferreira")),
5945
Developer(id = "xplosunn",
6046
name = "Hugo Sousa",
6147
email = "hugo [at] codacy.com",
6248
url = url("https://github.com/xplosunn")),
63-
Developer(
64-
id = "pedrocodacy",
65-
name = "Pedro Amaral",
66-
email = "pamaral [at] codacy.com",
67-
url = url("https://github.com/pedrocodacy")
68-
)
69-
)
49+
Developer(id = "pedrocodacy",
50+
name = "Pedro Amaral",
51+
email = "pamaral [at] codacy.com",
52+
url = url("https://github.com/pedrocodacy")))
7053

7154
ThisBuild / startYear := Some(2016)
7255
ThisBuild / description := "Library to develop Codacy tool plugins"

0 commit comments

Comments
 (0)