mirror of https://github.com/sbt/sbt.git
Fix dependency-management/scala-organization-version-check
No implicit for Append.Value[Vector[String], String] found
This commit is contained in:
parent
56e843960b
commit
6c4cf28202
|
|
@ -1434,7 +1434,7 @@ object Classpaths {
|
|||
Vector.empty, filterImplicit = false, checkExplicit = true, overrideScalaVersion = true
|
||||
)
|
||||
.withScalaOrganization(scalaOrganization.value)
|
||||
.withScalaArtifacts(scalaArtifacts.value))
|
||||
.withScalaArtifacts(scalaArtifacts.value.toVector))
|
||||
}
|
||||
)).value,
|
||||
artifactPath in makePom := artifactPathSetting(artifact in makePom).value,
|
||||
|
|
|
|||
|
|
@ -194,7 +194,7 @@ object Keys {
|
|||
val printWarnings = TaskKey[Unit]("print-warnings", "Shows warnings from compilation, including ones that weren't printed initially.", BPlusTask)
|
||||
val fileInputOptions = SettingKey[Seq[String]]("file-input-options", "Options that take file input, which may invalidate the cache.", CSetting)
|
||||
val scalaCompilerBridgeSource = SettingKey[ModuleID]("scala-compiler-bridge-source", "Configures the module ID of the sources of the compiler bridge.", CSetting)
|
||||
val scalaArtifacts = SettingKey[Vector[String]]("scala-artifacts", "Configures the list of artifacts which should match the Scala binary version", CSetting)
|
||||
val scalaArtifacts = SettingKey[Seq[String]]("scala-artifacts", "Configures the list of artifacts which should match the Scala binary version", CSetting)
|
||||
|
||||
val clean = TaskKey[Unit]("clean", "Deletes files produced by the build, such as generated sources, compiled classes, and task caches.", APlusTask)
|
||||
val console = TaskKey[Unit]("console", "Starts the Scala interpreter with the project classes on the classpath.", APlusTask)
|
||||
|
|
|
|||
Loading…
Reference in New Issue