mirror of https://github.com/sbt/sbt.git
Commit auto-formatted code
This commit is contained in:
parent
0a8402a8a9
commit
ffcec2fa35
|
|
@ -22,7 +22,8 @@ private[sbt] object CompatibilityWarning {
|
|||
s"""Found intransitive dependency ($m) while publishMavenStyle is true, but Maven repositories
|
||||
| do not support intransitive dependencies. Use exclusions instead so transitive dependencies
|
||||
| will be correctly excluded in dependent projects.
|
||||
""".stripMargin)
|
||||
""".stripMargin
|
||||
)
|
||||
} else ()
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -28,8 +28,10 @@ object ScalaArtifacts {
|
|||
Seq(ModuleID(org, DottyIDPrefix, version, Some(Configurations.ScalaTool.name + "->compile"),
|
||||
crossVersion = CrossVersion.binary))
|
||||
else
|
||||
Seq(scalaToolDependency(org, ScalaArtifacts.CompilerID, version),
|
||||
scalaToolDependency(org, ScalaArtifacts.LibraryID, version))
|
||||
Seq(
|
||||
scalaToolDependency(org, ScalaArtifacts.CompilerID, version),
|
||||
scalaToolDependency(org, ScalaArtifacts.LibraryID, version)
|
||||
)
|
||||
|
||||
private[this] def scalaToolDependency(org: String, id: String, version: String): ModuleID =
|
||||
ModuleID(org, id, version, Some(Configurations.ScalaTool.name + "->default,optional(default)"))
|
||||
|
|
|
|||
Loading…
Reference in New Issue