|
1 | | -import xerial.sbt.Sonatype.* |
2 | | -import xerial.sbt.Sonatype.sonatypeCentralHost |
3 | 1 | import ReleaseTransformations.* |
4 | 2 | import java.net.URI |
5 | 3 |
|
6 | 4 | Global / onChangedBuildSource := IgnoreSourceChanges |
7 | 5 |
|
8 | 6 | lazy val compileScalastyle = taskKey[Unit]("compileScalastyle") |
9 | 7 |
|
| 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 | + |
10 | 22 | val commonSettings = Seq( |
11 | 23 | ThisBuild / scalaVersion := "2.12.20", |
12 | 24 | crossScalaVersions := Seq("2.12.20", "2.13.16", "3.3.6"), |
@@ -43,18 +55,6 @@ val commonSettings = Seq( |
43 | 55 | if (isSnapshot.value) Some("central-snapshots" at centralSnapshots) |
44 | 56 | else localStaging.value |
45 | 57 | }, |
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", |
58 | 58 |
|
59 | 59 | Global / parallelExecution := false, |
60 | 60 |
|
|
0 commit comments