Fix dependency-management/scala-organization-version-check

No implicit for Append.Value[Vector[String], String] found
This commit is contained in:
Eugene Yokota 2017-01-22 12:57:16 -05:00
parent 56e843960b
commit 6c4cf28202
2 changed files with 2 additions and 2 deletions

View File

@ -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,

View File

@ -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)