mirror of https://github.com/sbt/sbt.git
[2.0.x] Hide projectDescriptors (#8959)
**Problem** projectDescriptors key depends on Ivy, and will be removed. **Solution** This hides the key in 2.0.x branch.
This commit is contained in:
parent
6ddbf38d9a
commit
023d3ba2c5
|
|
@ -638,7 +638,7 @@ object Keys {
|
|||
@transient
|
||||
val publishTo = taskKey[Option[Resolver]]("The resolver to publish to.").withRank(ASetting)
|
||||
val artifacts = settingKey[Seq[Artifact]]("The artifact definitions for the current module. Must be consistent with " + packagedArtifacts.key.label + ".").withRank(BSetting)
|
||||
val projectDescriptors = taskKey[Map[ModuleRevisionId, ModuleDescriptor]]("Project dependency map for the inter-project resolver.").withRank(DTask)
|
||||
private[sbt] val projectDescriptors = taskKey[Map[ModuleRevisionId, ModuleDescriptor]]("Project dependency map for the inter-project resolver.").withRank(DTask)
|
||||
val autoUpdate = settingKey[Boolean]("<unimplemented>").withRank(Invisible)
|
||||
val retrieveManaged = settingKey[Boolean]("If true, enables retrieving dependencies to the current build. Otherwise, dependencies are used directly from the cache.").withRank(BSetting)
|
||||
val retrieveManagedSync = settingKey[Boolean]("If true, enables synchronizing the dependencies retrieved to the current build by removed unneeded files.").withRank(BSetting)
|
||||
|
|
|
|||
Loading…
Reference in New Issue