Packages

object Repo

(Repo) can find (Org -> Project -> Release -> Artifact) Repo have two major input types: 1) user reference using org/project/release 2) dir listing of an artifact path (whose parents or filename can determine the org/project/release

function styles end with F

Source
repo.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Repo
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class Artifact(release: Release, ext: String, alt: Option[String] = None) extends Product with Serializable

    Org -> Project -> Release -> Artifact

  2. case class Org(domains: List[String], alt: Option[String] = None) extends Product with Serializable
  3. case class Project(org: Org, name: String, alt: Option[String] = None) extends Product with Serializable

    Org -> Project

  4. case class Release(project: Project, tag: Version) extends Product with Serializable
  5. type Repos = Iterable[Repo]
  6. case class SbtPlugin(sbtVersion: String = "0.13", scalaVersion: String = "2.10") extends Style with Product with Serializable

    <org> / <prj> / scala_<alt> / sbt_<alt> / <tag> / <ext>s / <prj>.<ext>

  7. trait Source extends AnyRef

    Generic repo source (required functions)

  8. class SourceFile extends SourcePathList
  9. class SourceGithub extends Source
  10. trait SourcePathList extends Source
  11. class SourceURL extends SourcePathList
  12. trait Style extends AnyRef

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def apply(base: URL, style: Style): Repo
  5. def apply(base: File, style: Style): Repo
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. implicit val defaultRepos: Repos
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def github(token: String): Repo
  14. lazy val github: Repo
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. val ivyCache: Repo
  18. val ivyLocal: Repo
  19. val mavenCentral: Repo
  20. val mavenLocal: Repo
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. val sbtPlugins: Repo
  25. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  26. def toString(): String
    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  30. object GithubStyle extends Style
  31. object Ivy extends Style

    <org> / <prj>[_alt] / <tag> / <ext>s / <prj>[_alt].<ext>

  32. object IvyCache extends Style

    <org> / <prj>[_alt] / <tag> / <ext>s / <prj>[_alt].<ext>

  33. object Maven extends Style

    <o/r/g> / <prj>[_alt] / <tag> / <prj>[_alt]-<tag>.<ext>

  34. object Org extends Serializable

    Org

  35. object Release extends Serializable

    Org -> Project -> Release

  36. object Style

Inherited from AnyRef

Inherited from Any

Ungrouped