Packages

t

sbt

ProjectDefinition

sealed trait ProjectDefinition[PR <: ProjectReference] extends AnyRef

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ProjectDefinition
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def aggregate: Seq[PR]

    The references to projects that are aggregated by this project.

    The references to projects that are aggregated by this project. When a task is run on this project, it will also be run on aggregated projects.

  2. abstract def base: File

    The base directory for the project.

  3. abstract def configurations: Seq[Configuration]

    The configurations for this project.

    The configurations for this project. These are groups of related tasks and the main reason to list them here is when one configuration extends another. In this case, a setting lookup in one configuration will fall back to the configurations it extends configuration if the setting doesn't exist.

  4. abstract def dependencies: Seq[ClasspathDep[PR]]

    The references to projects that are classpath dependencies of this project.

  5. abstract def id: String

    The project ID is used to uniquely identify a project within a build.

    The project ID is used to uniquely identify a project within a build. It is used to refer to a project from the command line and in the scope of keys.

  6. abstract def plugins: Plugins

    The defined Plugins associated with this project.

    The defined Plugins associated with this project. A AutoPlugin is a common label that is used by plugins to determine what settings, if any, to add to a project.

  7. abstract def projectOrigin: ProjectOrigin

    Indicates whether the project was created organically, or was generated synthetically.

  8. abstract def settings: Seq[Def.Setting[_]]

    The explicitly defined sequence of settings that configure this project.

    The explicitly defined sequence of settings that configure this project. These do not include the automatically appended settings as configured by auto.

Concrete 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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. final def equals(o: Any): Boolean
    Definition Classes
    ProjectDefinition → AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. final def hashCode(): Int
    Definition Classes
    ProjectDefinition → AnyRef → Any
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. def referenced: Seq[PR]
  16. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  17. def toString(): String
    Definition Classes
    ProjectDefinition → AnyRef → Any
  18. def uses: Seq[PR]

    The references to projects that are aggregate and classpath dependencies of this project.

  19. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped