final class OrganizationArtifactReport extends Serializable
OrganizationArtifactReport represents an organization+name entry in Ivy resolution report. In sbt's terminology, "module" consists of organization, name, and version. In Ivy's, "module" means just organization and name, and the one including version numbers are called revisions.
A sequence of OrganizationArtifactReport called details is newly added to ConfigurationReport, replacing evicted. (Note old evicted was just a seq of ModuleIDs). OrganizationArtifactReport groups the ModuleReport of both winners and evicted reports by their organization and name, which can be used to calculate detailed eviction warning etc.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- OrganizationArtifactReport
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
def
equals(o: Any): Boolean
- Definition Classes
- OrganizationArtifactReport → AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- OrganizationArtifactReport → AnyRef → Any
- val modules: Vector[ModuleReport]
- val name: String
- val organization: String
-
def
toString(): String
- Definition Classes
- OrganizationArtifactReport → AnyRef → Any
- def withModules(modules: Vector[ModuleReport]): OrganizationArtifactReport
- def withName(name: String): OrganizationArtifactReport
- def withOrganization(organization: String): OrganizationArtifactReport