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], generatedManagedSources: Boolean) 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], generatedManagedSources: Boolean)

    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. val generatedManagedSources: Boolean
  15. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. val id: String
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. val java: Option[JavaData]
  19. val mainSourceDirectories: Seq[File]
  20. val name: String
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  24. val organization: String
  25. val packagePrefix: Option[String]
  26. val play2: Option[Play2Data]
  27. val resolvers: Set[ResolverData]
  28. val scala: Option[ScalaData]
  29. val settings: Seq[SettingData]
  30. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  31. val target: File
  32. val tasks: Seq[TaskData]
  33. val testSourceDirectories: Seq[File]
  34. val version: String
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  37. 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