Skip to content

Commit 508645b

Browse files
authored
Merge pull request #218 from lrytz/central
Update sbt-ci-release to 1.11.1
2 parents 27a0d19 + d20bd39 commit 508645b

File tree

3 files changed

+8
-13
lines changed

3 files changed

+8
-13
lines changed

build.sbt

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
enablePlugins(SbtPlugin)
22

3-
name := "sbt-scala-module"
4-
sonatypeProfileName := "org.scala-lang"
5-
organization := "org.scala-lang.modules"
6-
homepage := Some(url("https://github.com/scala/sbt-scala-module"))
7-
licenses := Seq(("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0")))
8-
developers := List(Developer("", "", "", url("https://scala-lang.org")))
3+
name := "sbt-scala-module"
4+
organization := "org.scala-lang.modules"
5+
homepage := Some(url("https://github.com/scala/sbt-scala-module"))
6+
licenses := Seq(("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0")))
7+
developers := List(Developer("", "", "", url("https://scala-lang.org")))
98

109
addSbtPlugin("com.github.sbt" % "sbt-osgi" % "0.10.0")
1110
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0")
12-
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.3") // set version, scmInfo, publishing settings
11+
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.1") // set version, scmInfo, publishing settings
1312
addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "3.2.1") // brings in MiMa

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.3")
1+
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.1")

src/main/scala/ScalaModulePlugin.scala

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import sbt.Keys._
66
import sbt.{Def, _}
77
import sbtdynver.DynVerPlugin
88
import sbtdynver.DynVerPlugin.autoImport.dynverGitDescribeOutput
9-
import xerial.sbt.Sonatype.autoImport.{sonatypeProfileName, sonatypeSessionName}
109
import sbtversionpolicy.SbtVersionPolicyPlugin.autoImport.{Compatibility, versionPolicyCheck, versionPolicyIgnoredInternalDependencyVersions, versionPolicyIntention}
1110

1211
object ScalaModulePlugin extends AutoPlugin {
@@ -34,10 +33,7 @@ object ScalaModulePlugin extends AutoPlugin {
3433
)
3534

3635
// Settings added to the project scope
37-
override def projectSettings: Seq[Setting[_]] = Seq(
38-
// The staging profile is called `org.scala-lang`, the default is `org.scala-lang.modules`
39-
sonatypeProfileName := "org.scala-lang",
40-
)
36+
override def projectSettings: Seq[Setting[_]] = Seq()
4137

4238
// Global settings
4339
override def globalSettings: Seq[Def.Setting[_]] = Seq(

0 commit comments

Comments
 (0)