case class ProjectData(id: String, buildURI: URI, name: String, organization: String, version: String, base: File, packagePrefix: Option[String], basePackages: Seq[String], target: File, configurations: Seq[ConfigurationData], java: Option[JavaData], scala: Option[ScalaData], compileOrder: String, dependencies: DependencyData, resolvers: Set[ResolverData], play2: Option[Play2Data], settings: Seq[SettingData], tasks: Seq[TaskData], commands: Seq[CommandData], mainSourceDirectories: Seq[File], testSourceDirectories: Seq[File]) extends Product with Serializable

Represents single project in build. Corresponds to IDEA module.

basePackages

List of packages to use as base prefixes in chaining

target

Compiler output directory (value of target key)

mainSourceDirectories

List of source directories in all available source configurations. Unlike org.jetbrains.sbt.structure.ConfigurationData#sources(), which was obtained from managedSourceDirectories and unmanagedSourceDirectories keys, this value is sourced from the sourceDirectory key. In a simple sbt project in e.g. compile configuration org.jetbrains.sbt.structure.ConfigurationData#sources() will be (the project path at the beginning of these paths is skipped)

  • /target/scala-3.3.3/src_managed/main - /src/main/scala - /src/main/scala-3 - /src/main/java But value of this field will be just /src/main. It is needed to identify ContentRootData#rootPath in the Scala plugin.
Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ProjectData
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ProjectData(id: String, buildURI: URI, name: String, organization: String, version: String, base: File, packagePrefix: Option[String], basePackages: Seq[String], target: File, configurations: Seq[ConfigurationData], java: Option[JavaData], scala: Option[ScalaData], compileOrder: String, dependencies: DependencyData, resolvers: Set[ResolverData], play2: Option[Play2Data], settings: Seq[SettingData], tasks: Seq[TaskData], commands: Seq[CommandData], mainSourceDirectories: Seq[File], testSourceDirectories: Seq[File])

    basePackages

    List of packages to use as base prefixes in chaining

    target

    Compiler output directory (value of target key)

    mainSourceDirectories

    List of source directories in all available source configurations. Unlike org.jetbrains.sbt.structure.ConfigurationData#sources(), which was obtained from managedSourceDirectories and unmanagedSourceDirectories keys, this value is sourced from the sourceDirectory key. In a simple sbt project in e.g. compile configuration org.jetbrains.sbt.structure.ConfigurationData#sources() will be (the project path at the beginning of these paths is skipped)

    • /target/scala-3.3.3/src_managed/main - /src/main/scala - /src/main/scala-3 - /src/main/java But value of this field will be just /src/main. It is needed to identify ContentRootData#rootPath in the Scala plugin.

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. val base: File
  6. val basePackages: Seq[String]
  7. val buildURI: URI
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  9. val commands: Seq[CommandData]
  10. val compileOrder: String
  11. val configurations: Seq[ConfigurationData]
  12. val dependencies: DependencyData
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. val id: String
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. val java: Option[JavaData]
  18. val mainSourceDirectories: Seq[File]
  19. val name: String
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. val organization: String
  24. val packagePrefix: Option[String]
  25. val play2: Option[Play2Data]
  26. val resolvers: Set[ResolverData]
  27. val scala: Option[ScalaData]
  28. val settings: Seq[SettingData]
  29. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  30. val target: File
  31. val tasks: Seq[TaskData]
  32. val testSourceDirectories: Seq[File]
  33. val version: String
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  36. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped