Packages

sealed trait Project extends ProjectDefinition[ProjectReference] with CompositeProject

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

Abstract Value Members

  1. abstract def aggregate: Seq[ProjectReference]

    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 base: File

    The base directory for the project.

    The base directory for the project.

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

    Definition Classes
    ProjectDefinition
  4. abstract def dependencies: Seq[ClasspathDep[ProjectReference]]

    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
  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.

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

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

    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. def aggregate(refs: ProjectReference*): Project

    Adds projects to be aggregated.

    Adds projects to be aggregated. When a user requests a task to run on this project from the command line, the task will also be run in aggregated projects.

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  7. def componentProjects: Seq[Project]
    Definition Classes
    ProjectCompositeProject
  8. def configs(cs: Configuration*): Project

    Adds new configurations directly to this project.

    Adds new configurations directly to this project. To override an existing configuration, use overrideConfigs.

  9. def configure(transforms: (Project) ⇒ Project*): Project

    Applies the given functions to this Project.

    Applies the given functions to this Project. The second function is applied to the result of applying the first to this Project and so on. The intended use is a convenience for applying default configuration provided by a plugin.

  10. def dependsOn(deps: ClasspathDep[ProjectReference]*): Project

    Adds classpath dependencies on internal or external projects.

  11. def disablePlugins(ps: AutoPlugin*): Project

    Disable the given plugins on this project.

  12. def enablePlugins(ns: Plugins*): Project

    Sets the AutoPlugins of this project.

    Sets the AutoPlugins of this project. A AutoPlugin is a common label that is used by plugins to determine what settings, if any, to enable on a project.

  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def equals(o: Any): Boolean
    Definition Classes
    ProjectDefinition → AnyRef → Any
  15. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. final def hashCode(): Int
    Definition Classes
    ProjectDefinition → AnyRef → Any
  18. def in(dir: File): Project

    Sets the base directory for this project.

  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. def overrideConfigs(cs: Configuration*): Project

    Adds configurations to this project.

    Adds configurations to this project. Added configurations replace existing configurations with the same name.

  24. def referenced: Seq[ProjectReference]
    Definition Classes
    ProjectDefinition
  25. def resolve(resolveRef: (ProjectReference) ⇒ ProjectRef): ResolvedProject
  26. def resolveBuild(resolveRef: (ProjectReference) ⇒ ProjectReference): Project
  27. def settings(ss: Def.SettingsDefinition*): Project

    Appends settings to the current settings sequence for this project.

  28. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  29. def toString(): String
    Definition Classes
    ProjectDefinition → AnyRef → Any
  30. def uses: Seq[ProjectReference]

    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
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  34. def withId(id: String): Project

Inherited from CompositeProject

Inherited from AnyRef

Inherited from Any

Ungrouped