Packages

package core

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Package Members

  1. package compatibility

Type Members

  1. final case class Activation(properties: Seq[(String, Option[String])], os: Os, jdk: Option[Either[VersionInterval, Seq[Version]]]) extends Product with Serializable
  2. final case class Artifact(url: String, checksumUrls: Map[String, String], extra: Map[String, Artifact], changing: Boolean, optional: Boolean, authentication: Option[Authentication]) extends Product with Serializable
  3. final case class Attributes(type: Type, classifier: Classifier) extends Product with Serializable
  4. final case class Authentication(user: String, password: String) extends Product with Serializable
  5. final case class Classifier(value: String) extends AnyVal with Product with Serializable
  6. final case class Configuration(value: String) extends AnyVal with Product with Serializable
  7. final case class Continue(current: Resolution, cont: (Resolution) ⇒ ResolutionProcess) extends ResolutionProcess with Product with Serializable
  8. final case class Dependency(module: Module, version: String, configuration: Configuration, exclusions: Set[(Organization, ModuleName)], attributes: Attributes, optional: Boolean, transitive: Boolean) extends Product with Serializable

    Dependencies with the same @module will typically see their @version-s merged.

    Dependencies with the same @module will typically see their @version-s merged.

    The remaining fields are left untouched, some being transitively propagated (exclusions, optional, in particular).

  9. final case class Done(resolution: Resolution) extends ResolutionProcess with Product with Serializable
  10. final case class Extension(value: String) extends AnyVal with Product with Serializable
  11. final case class Info(description: String, homePage: String, licenses: Seq[(String, Option[String])], developers: Seq[Developer], publication: Option[DateTime]) extends Product with Serializable

    Extra project info, not used during resolution

  12. final case class Missing(missing: Seq[(Module, String)], current: Resolution, cont: (Resolution) ⇒ ResolutionProcess) extends ResolutionProcess with Product with Serializable
  13. final case class Module(organization: Organization, name: ModuleName, attributes: Map[String, String]) extends Product with Serializable

    Identifies a "module".

    Identifies a "module".

    During resolution, all dependencies having the same module will be given the same version, if there are no version conflicts between them.

    Using the same terminology as Ivy.

  14. final case class ModuleName(value: String) extends AnyVal with Product with Serializable
  15. final case class Organization(value: String) extends AnyVal with Product with Serializable
  16. final case class Profile(id: String, activeByDefault: Option[Boolean], activation: Activation, dependencies: Seq[(Configuration, Dependency)], dependencyManagement: Seq[(Configuration, Dependency)], properties: Map[String, String]) extends Product with Serializable
  17. final case class Project(module: Module, version: String, dependencies: Seq[(Configuration, Dependency)], configurations: Map[Configuration, Seq[Configuration]], parent: Option[(Module, String)], dependencyManagement: Seq[(Configuration, Dependency)], properties: Seq[(String, String)], profiles: Seq[Profile], versions: Option[Versions], snapshotVersioning: Option[SnapshotVersioning], packagingOpt: Option[Type], relocated: Boolean, actualVersionOpt: Option[String], publications: Seq[(Configuration, Publication)], info: Info) extends Product with Serializable
  18. final case class Publication(name: String, type: Type, ext: Extension, classifier: Classifier) extends Product with Serializable
  19. trait Repository extends Product with Serializable with Source
  20. final case class Resolution(rootDependencies: Seq[Dependency], dependencies: Set[Dependency], forceVersions: Map[Module, String], conflicts: Set[Dependency], projectCache: Map[ModuleVersion, (Source, Project)], errorCache: Map[ModuleVersion, Seq[String]], finalDependenciesCache: Map[Dependency, Seq[Dependency]], filter: Option[(Dependency) ⇒ Boolean], osInfo: Os, jdkVersion: Option[Version], userActivations: Option[Map[String, Boolean]], mapDependencies: Option[(Dependency) ⇒ Dependency], forceProperties: Map[String, String]) extends Product with Serializable

    State of a dependency resolution.

    State of a dependency resolution.

    Done if method isDone returns true.

  21. sealed abstract class ResolutionProcess extends AnyRef
  22. final case class SnapshotVersion(classifier: Classifier, extension: Extension, value: String, updated: Option[DateTime]) extends Product with Serializable
  23. final case class SnapshotVersioning(module: Module, version: String, latest: String, release: String, timestamp: String, buildNumber: Option[Int], localCopy: Option[Boolean], lastUpdated: Option[DateTime], snapshotVersions: Seq[SnapshotVersion]) extends Product with Serializable
  24. final case class Type(value: String) extends AnyVal with Product with Serializable
  25. final case class Version(repr: String) extends Ordered[Version] with Product with Serializable

    Used internally by Resolver.

    Used internally by Resolver.

    Same kind of ordering as aether-util/src/main/java/org/eclipse/aether/util/version/GenericVersion.java

  26. final case class VersionConstraint(interval: VersionInterval, preferred: Seq[Version]) extends Product with Serializable
  27. final case class VersionInterval(from: Option[Version], to: Option[Version], fromIncluded: Boolean, toIncluded: Boolean) extends Product with Serializable
  28. final case class Versions(latest: String, release: String, available: List[String], lastUpdated: Option[DateTime]) extends Product with Serializable

Value Members

  1. object Activation extends Serializable
  2. object Artifact extends Serializable
  3. object Attributes extends Serializable
  4. object Classifier extends Serializable
  5. object Configuration extends Serializable
  6. object Exclusions
  7. object Extension extends Serializable
  8. object Info extends Serializable
  9. object ModuleName extends Serializable
  10. object Orders
  11. object Organization extends Serializable
  12. object Parse
  13. object Repository extends Serializable
  14. object Resolution extends Serializable
  15. object ResolutionProcess
  16. object Type extends Serializable
  17. object Version extends Serializable
  18. object VersionConstraint extends Serializable
  19. object VersionInterval extends Serializable
  20. object Versions extends Serializable

Ungrouped