package dependency
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- trait Dependency extends AnyRef
- case class DesignDependency extends ParsedDependency with Product with Serializable
-
case class
DirectUnitCache(baseUnits: Map[String, BaseUnit]) extends UnitCache with Product with Serializable
This implementation of UnitCache returns the instances of BaseUnit that that composite.
This implementation of UnitCache returns the instances of BaseUnit that that composite. It should be used in when parsing a single "Unit" because the elements in the cache are mutable.
- baseUnits
a Map whit the BaseUnits to return given a URL.
- case class ExtensionDependency extends ParsedDependency with Product with Serializable
- case class IgnoredDependency(descriptor: ProjectDescriptor, results: Seq[APBResult]) extends Dependency with Product with Serializable
- case class InvalidParsedDependency extends ParsedDependency with Product with Serializable
- case class ManagementDependency extends ParsedDependency with Product with Serializable
- abstract class ParsedDependency extends Dependency
- case class ProfileDependency extends ParsedDependency with Product with Serializable
- case class ProvidedDependency(project: Gav, provided: Gav, scope: DependencyScope) extends Product with Serializable
- trait UnitCacheBuilder extends AnyRef
Value Members
-
object
CloneOnceUnitCacheBuilder extends UnitCacheBuilder
This implementation of UnitCacheBuilder that clones the baseUnit of the provided dependencies and creates a DirectUnitCache.
This implementation of UnitCacheBuilder that clones the baseUnit of the provided dependencies and creates a DirectUnitCache. This implementation allows that BaseUnits of dependencies are not shared by several BaseUnitClients.