Packages

package rule

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. final case class AlwaysFail(doTryResolve: Boolean = false) extends Rule with Product with Serializable

    Always fails.

    Always fails.

    Mostly for testing.

    If doTryResolve is true, tryResolve will return the current Resolution, as if it was attempting to address the issue. Else, it will fail early.

  2. final case class DontBumpRootDependencies(matchers: ModuleMatchers) extends Rule with Product with Serializable
  3. abstract class Rule extends Product with Serializable
  4. sealed abstract class RuleResolution extends Product with Serializable
  5. final case class SameVersion(matchers: Set[ModuleMatcher]) extends Rule with Product with Serializable

    Forces some modules to all have the same version.

    Forces some modules to all have the same version.

    If ever different versions are found, the highest one is currently selected.

  6. final case class Strict(include: Set[ModuleMatcher] = Set(ModuleMatcher.all), exclude: Set[ModuleMatcher] = Set.empty, ignoreIfForcedVersion: Boolean = true) extends Rule with Product with Serializable

Value Members

  1. object AlwaysFail extends Serializable
  2. object DontBumpRootDependencies extends Serializable
  3. object RuleResolution extends Serializable
  4. object SameVersion extends Serializable
  5. object Strict extends Serializable

Ungrouped