mirror of https://github.com/sbt/sbt.git
Fix Defaults
This commit is contained in:
parent
492cd2c091
commit
64a8d5ff31
|
|
@ -312,6 +312,9 @@ object Defaults extends BuildCommon {
|
||||||
csrLogger := LMCoursier.coursierLoggerTask.value,
|
csrLogger := LMCoursier.coursierLoggerTask.value,
|
||||||
csrMavenProfiles :== Set.empty,
|
csrMavenProfiles :== Set.empty,
|
||||||
csrReconciliations :== LMCoursier.relaxedForAllModules,
|
csrReconciliations :== LMCoursier.relaxedForAllModules,
|
||||||
|
csrSameVersions := Seq(
|
||||||
|
ScalaArtifacts.Artifacts.map(a => InclExclRule(scalaOrganization.value, a)).toSet
|
||||||
|
),
|
||||||
csrCacheDirectory := {
|
csrCacheDirectory := {
|
||||||
if (useCoursier.value) LMCoursier.defaultCacheLocation
|
if (useCoursier.value) LMCoursier.defaultCacheLocation
|
||||||
else Classpaths.dummyCoursierDirectory(appConfiguration.value)
|
else Classpaths.dummyCoursierDirectory(appConfiguration.value)
|
||||||
|
|
@ -979,6 +982,7 @@ object Defaults extends BuildCommon {
|
||||||
compileAnalysisTargetRoot.value / compileAnalysisFilename.value
|
compileAnalysisTargetRoot.value / compileAnalysisFilename.value
|
||||||
},
|
},
|
||||||
externalHooks := IncOptions.defaultExternal,
|
externalHooks := IncOptions.defaultExternal,
|
||||||
|
zincCompilationListeners := Seq.empty,
|
||||||
incOptions := {
|
incOptions := {
|
||||||
val old = incOptions.value
|
val old = incOptions.value
|
||||||
val extHooks = externalHooks.value
|
val extHooks = externalHooks.value
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue