mirror of
https://github.com/sbt/sbt.git
synced 2026-09-04 08:45:56 +02:00
Fixes https://github.com/sbt/sbt/issues/6370 compatibility note Today we release the sbt-launcher JAR **twice** under https://repo1.maven.org/maven2/org/scala-sbt/sbt-launch/1.4.7/: - https://repo1.maven.org/maven2/org/scala-sbt/sbt-launch/1.4.7/sbt-launch-1.4.7.jar - https://repo1.maven.org/maven2/org/scala-sbt/sbt-launch/1.4.7/sbt-launch.jar I think this goes back to the early days when we used to tell people to download the `sbt-launch.jar` and write your own launcher script, which I remember doing. Some remnant seen in https://www.scala-sbt.org/0.12.4/docs/Getting-Started/Setup.html#unix. I think we can drop this old practice.
14 lines
637 B
Scala
14 lines
637 B
Scala
ThisBuild / useCoursier := false
|
|
|
|
scalacOptions ++= Seq("-feature", "-language:postfixOps", "-Ywarn-unused:_,-imports")
|
|
|
|
addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.0.0")
|
|
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
|
|
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.3.0")
|
|
addSbtPlugin("org.scala-sbt" % "sbt-contraband" % "0.5.1")
|
|
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "3.0.2")
|
|
addSbtPlugin("com.lightbend" % "sbt-whitesource" % "0.1.14")
|
|
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.9")
|
|
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.6.1")
|
|
addSbtPlugin("com.swoval" % "sbt-java-format" % "0.3.1")
|