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
- Alphabetic
- By Inheritance
Inherited
- Repo
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- case class Artifact(release: Release, ext: String, alt: Option[String] = None) extends Product with Serializable
Org -> Project -> Release -> Artifact
- case class Org(domains: List[String], alt: Option[String] = None) extends Product with Serializable
- case class Project(org: Org, name: String, alt: Option[String] = None) extends Product with Serializable
Org -> Project
- case class Release(project: Project, tag: Version) extends Product with Serializable
- type Repos = Iterable[Repo]
- 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>
- trait Source extends AnyRef
Generic repo source (required functions)
- class SourceFile extends SourcePathList
- class SourceGithub extends Source
- trait SourcePathList extends Source
- class SourceURL extends SourcePathList
- trait Style extends AnyRef
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def apply(base: URL, style: Style): Repo
- def apply(base: File, style: Style): Repo
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- implicit val defaultRepos: Repos
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def github(token: String): Repo
- lazy val github: Repo
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val ivyCache: Repo
- val ivyLocal: Repo
- val mavenCentral: Repo
- val mavenLocal: Repo
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val sbtPlugins: Repo
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- object GithubStyle extends Style
- object Ivy extends Style
<org> / <prj>[_alt] / <tag> / <ext>s / <prj>[_alt].<ext>
- object IvyCache extends Style
<org> / <prj>[_alt] / <tag> / <ext>s / <prj>[_alt].<ext>
- object Maven extends Style
<o/r/g> / <prj>[_alt] / <tag> / <prj>[_alt]-<tag>.<ext>
- object Org extends Serializable
Org
- object Release extends Serializable
Org -> Project -> Release
- object Style