sbt

SshRepository

final case class SshRepository(name: String, connection: SshConnection, patterns: Patterns, publishPermissions: Option[String]) extends SshBasedRepository with Product with Serializable

sbt interface for an Ivy repository over ssh. More convenient construction is done using Resolver.ssh.

Linear Supertypes
Serializable, Serializable, Product, Equals, SshBasedRepository, PatternsBasedRepository, Resolver, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. SshRepository
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. SshBasedRepository
  7. PatternsBasedRepository
  8. Resolver
  9. AnyRef
  10. Any
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SshRepository(name: String, connection: SshConnection, patterns: Patterns, publishPermissions: Option[String])

Type Members

  1. type RepositoryType = SshRepository

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def artifacts(artifactPatterns: String*): RepositoryType

    Adds the given patterns for resolving/publishing artifacts.

    Adds the given patterns for resolving/publishing artifacts.

    Definition Classes
    PatternsBasedRepository
  7. def as(user: String, keyfile: File, password: Option[String]): RepositoryType

    Definition Classes
    SshBasedRepository
  8. def as(user: String, keyfile: File, password: String): RepositoryType

    Definition Classes
    SshBasedRepository
  9. def as(user: String, keyfile: File): RepositoryType

    Configures this to use the specified keyfile and password for the keyfile when connecting to the remote repository.

    Configures this to use the specified keyfile and password for the keyfile when connecting to the remote repository.

    Definition Classes
    SshBasedRepository
  10. def as(user: String, password: Option[String]): RepositoryType

    Definition Classes
    SshBasedRepository
  11. def as(user: String): RepositoryType

    Definition Classes
    SshBasedRepository
  12. def as(user: String, password: String): RepositoryType

    Configures this to use the specified user name and password when connecting to the remote repository.

    Configures this to use the specified user name and password when connecting to the remote repository.

    Definition Classes
    SshBasedRepository
  13. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  14. def canEqual(arg0: Any): Boolean

    Definition Classes
    SshRepository → Equals
  15. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  16. val connection: SshConnection

    The object representing the configured ssh connection for this repository.

    The object representing the configured ssh connection for this repository.

    Definition Classes
    SshRepositorySshBasedRepository
  17. def copy(connection: SshConnection): SshRepository

    Attributes
    protected
    Definition Classes
    SshRepositorySshBasedRepository
  18. def copy(patterns: Patterns): SshRepository

    Should be implemented to create a new copy of this repository but with patterns as given.

    Should be implemented to create a new copy of this repository but with patterns as given.

    Attributes
    protected
    Definition Classes
    SshRepositoryPatternsBasedRepository
  19. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  20. def equals(arg0: Any): Boolean

    Definition Classes
    SshRepository → Equals → AnyRef → Any
  21. def finalize(): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  22. final def getClass(): java.lang.Class[_]

    Definition Classes
    AnyRef → Any
  23. def hashCode(): Int

    Definition Classes
    SshRepository → AnyRef → Any
  24. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  25. def ivys(ivyPatterns: String*): RepositoryType

    Adds the given patterns for resolving/publishing Ivy files.

    Adds the given patterns for resolving/publishing Ivy files.

    Definition Classes
    PatternsBasedRepository
  26. def mavenStyle(): RepositoryType

    Enables maven 2 compatibility for this repository.

    Enables maven 2 compatibility for this repository.

    Definition Classes
    PatternsBasedRepository
  27. val name: String

    Definition Classes
    SshRepositoryResolver
  28. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  29. final def notify(): Unit

    Definition Classes
    AnyRef
  30. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  31. val patterns: Patterns

    The object representing the configured patterns for this repository.

    The object representing the configured patterns for this repository.

    Definition Classes
    SshRepositoryPatternsBasedRepository
  32. def productArity: Int

    Definition Classes
    SshRepository → Product
  33. def productElement(arg0: Int): Any

    Definition Classes
    SshRepository → Product
  34. def productIterator: Iterator[Any]

    Definition Classes
    Product
  35. def productPrefix: String

    Definition Classes
    SshRepository → Product
  36. val publishPermissions: Option[String]

  37. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  38. def toString(): String

    Definition Classes
    SshRepository → AnyRef → Any
  39. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  40. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  41. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  42. def withPermissions(publishPermissions: Option[String]): SshRepository

  43. def withPermissions(publishPermissions: String): SshRepository

    Defines the permissions to set when publishing to this repository.

Deprecated Value Members

  1. def productElements: Iterator[Any]

    Definition Classes
    Product
    Annotations
    @deprecated
    Deprecated

    (Since version 2.8.0) use productIterator instead

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from SshBasedRepository

Inherited from PatternsBasedRepository

Inherited from Resolver

Inherited from AnyRef

Inherited from Any