Skip to content

Commit 23c3b41

Browse files
committed
Fix build.sbt
1 parent 736b11c commit 23c3b41

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

build.sbt

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,24 @@
1-
import xerial.sbt.Sonatype.*
2-
import xerial.sbt.Sonatype.sonatypeCentralHost
31
import ReleaseTransformations.*
42
import java.net.URI
53

64
Global / onChangedBuildSource := IgnoreSourceChanges
75

86
lazy val compileScalastyle = taskKey[Unit]("compileScalastyle")
97

8+
ThisBuild / organization := "com.dimafeng"
9+
ThisBuild / organizationName := "testcontainers-scala"
10+
ThisBuild / homepage := Some(url("https://github.com/testcontainers/testcontainers-scala"))
11+
ThisBuild / licenses += "The MIT License (MIT)" -> URI.create("https://opensource.org/licenses/MIT").toURL
12+
13+
ThisBuild / developers := List(
14+
Developer(
15+
"dimafeng",
16+
"Dmitry Fedosov",
17+
18+
url("http://dimafeng.com")
19+
)
20+
)
21+
1022
val commonSettings = Seq(
1123
ThisBuild / scalaVersion := "2.12.20",
1224
crossScalaVersions := Seq("2.12.20", "2.13.16", "3.3.6"),
@@ -43,18 +55,6 @@ val commonSettings = Seq(
4355
if (isSnapshot.value) Some("central-snapshots" at centralSnapshots)
4456
else localStaging.value
4557
},
46-
sonatypeProfileName := "testcontainers-scala",
47-
sonatypeProjectHosting := Some(GitHubHosting("testcontainers", "testcontainers-scala", "[email protected]")),
48-
licenses := Seq("The MIT License (MIT)" -> URI.create("https://opensource.org/licenses/MIT").toURL),
49-
developers := List(
50-
Developer(
51-
"dimafeng",
52-
"Dmitry Fedosov",
53-
54-
url("http://dimafeng.com")
55-
)
56-
),
57-
ThisBuild / organization := "com.dimafeng",
5858

5959
Global / parallelExecution := false,
6060

0 commit comments

Comments
 (0)