mirror of https://github.com/sbt/sbt.git
change Scaladoc style comment
This commit is contained in:
parent
5af540628f
commit
c97563a0c0
|
|
@ -13,15 +13,15 @@ import sbt.util.Logger
|
|||
* See also UpdateConfiguration in IvyActions.scala.
|
||||
*/
|
||||
final class UpdateOptions private[sbt] (
|
||||
/** If set to CircularDependencyLevel.Error, halt the dependency resolution. */
|
||||
// If set to CircularDependencyLevel.Error, halt the dependency resolution.
|
||||
val circularDependencyLevel: CircularDependencyLevel,
|
||||
/** If set to true, check all resolvers for snapshots. */
|
||||
// If set to true, check all resolvers for snapshots.
|
||||
val latestSnapshots: Boolean,
|
||||
/** If set to true, use consolidated resolution. */
|
||||
// If set to true, use consolidated resolution.
|
||||
val consolidatedResolution: Boolean,
|
||||
/** If set to true, use cached resolution. */
|
||||
// If set to true, use cached resolution.
|
||||
val cachedResolution: Boolean,
|
||||
/** Extention point for an alternative resolver converter. */
|
||||
// Extention point for an alternative resolver converter.
|
||||
val resolverConverter: UpdateOptions.ResolverConverter
|
||||
) {
|
||||
def withCircularDependencyLevel(circularDependencyLevel: CircularDependencyLevel): UpdateOptions =
|
||||
|
|
|
|||
Loading…
Reference in New Issue