Packages

t

sbt

ResolvedProject

sealed trait ResolvedProject extends ProjectDefinition[ProjectRef]

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ResolvedProject
  2. ProjectDefinition
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def aggregate: Seq[ProjectRef]

    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.

    Definition Classes
    ProjectDefinition
  2. abstract def autoPlugins: Seq[AutoPlugin]

    The AutoPlugins enabled for this project as computed from plugins.

    The AutoPlugins enabled for this project as computed from plugins.

    Definition Classes
    ResolvedProjectProjectDefinition
  3. abstract def base: File

    The base directory for the project.

    The base directory for the project.

    Definition Classes
    ProjectDefinition
  4. 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.

    Definition Classes
    ProjectDefinition
  5. abstract def dependencies: Seq[ClasspathDep[ProjectRef]]

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

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

    Definition Classes
    ProjectDefinition
  6. 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.

    Definition Classes
    ProjectDefinition
  7. 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.

    Definition Classes
    ProjectDefinition
  8. abstract def projectOrigin: ProjectOrigin

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

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

    Definition Classes
    ProjectDefinition
  9. 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.

    Definition Classes
    ProjectDefinition

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[ProjectRef]
    Definition Classes
    ProjectDefinition
  16. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  17. def toString(): String
    Definition Classes
    ProjectDefinition → AnyRef → Any
  18. def uses: Seq[ProjectRef]

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

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

    Definition Classes
    ProjectDefinition
  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 ProjectDefinition[ProjectRef]

Inherited from AnyRef

Inherited from Any

Ungrouped