Packages

object Config

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Config
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class Artifact(name: String, classifier: Option[String], checksum: Option[Checksum], path: Path) extends Product with Serializable
  2. case class Checksum(type: String, digest: String) extends Product with Serializable
  3. sealed abstract class CompileOrder extends AnyRef
  4. case class CompileSetup(order: CompileOrder, addLibraryToBootClasspath: Boolean, addCompilerToClasspath: Boolean, addExtraJarsToClasspath: Boolean, manageBootClasspath: Boolean, filterLibraryFromClasspath: Boolean) extends Product with Serializable
  5. case class File(version: String, project: Project) extends Product with Serializable
  6. case class Java(options: List[String]) extends Product with Serializable
  7. case class JsConfig(version: String, mode: LinkerMode, kind: ModuleKindJS, emitSourceMaps: Boolean, jsdom: Option[Boolean], output: Option[Path], nodePath: Option[Path], toolchain: List[Path], moduleSplitStyle: Option[ModuleSplitStyleJS] = None) extends PlatformConfig with Product with Serializable
  8. case class JvmConfig(home: Option[Path], options: List[String]) extends PlatformConfig with Product with Serializable
  9. sealed abstract class LinkerMode extends AnyRef
  10. case class Module(organization: String, name: String, version: String, configurations: Option[String], artifacts: List[Artifact]) extends Product with Serializable
  11. sealed abstract class ModuleKindJS extends AnyRef
  12. sealed abstract class ModuleSplitStyleJS extends AnyRef
  13. sealed abstract class NativeBuildTarget extends AnyRef
  14. case class NativeConfig(version: String, mode: LinkerMode, gc: String, targetTriple: Option[String], clang: Path, clangpp: Path, toolchain: List[Path], options: NativeOptions, linkStubs: Boolean, check: Boolean, dump: Boolean, output: Option[Path], buildTarget: Option[NativeBuildTarget] = None) extends PlatformConfig with Product with Serializable
  15. case class NativeOptions(linker: List[String], compiler: List[String]) extends Product with Serializable
  16. sealed abstract class Platform extends AnyRef
  17. sealed trait PlatformConfig extends AnyRef
  18. case class Project(name: String, directory: Path, workspaceDir: Option[Path], sources: List[Path], sourcesGlobs: Option[List[SourcesGlobs]], sourceRoots: Option[List[Path]], dependencies: List[String], classpath: List[Path], out: Path, classesDir: Path, resources: Option[List[Path]], scala: Option[Scala], java: Option[Java], sbt: Option[Sbt], test: Option[Test], platform: Option[Platform], resolution: Option[Resolution], tags: Option[List[String]], sourceGenerators: Option[List[SourceGenerator]]) extends Product with Serializable
  19. case class Resolution(modules: List[Module]) extends Product with Serializable
  20. case class Sbt(sbtVersion: String, autoImports: List[String]) extends Product with Serializable
  21. case class Scala(organization: String, name: String, version: String, options: List[String], jars: List[Path], analysis: Option[Path], setup: Option[CompileSetup], bridgeJars: Option[List[Path]]) extends Product with Serializable
  22. case class SourceGenerator(sourcesGlobs: List[SourcesGlobs], outputDirectory: Path, command: List[String], unmanagedInputs: List[Path] = Nil) extends Product with Serializable
  23. case class SourcesGlobs(directory: Path, walkDepth: Option[Int], includes: List[String], excludes: List[String]) extends Product with Serializable
  24. case class Test(frameworks: List[TestFramework], options: TestOptions) extends Product with Serializable
  25. case class TestArgument(args: List[String], framework: Option[TestFramework]) extends Product with Serializable
  26. case class TestFramework(names: List[String]) extends Product with Serializable
  27. case class TestOptions(excludes: List[String], arguments: List[TestArgument]) extends Product with Serializable

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(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  13. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  14. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  15. def toString(): String
    Definition Classes
    AnyRef → Any
  16. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  17. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  18. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  19. object CompileOrder
  20. object CompileSetup extends Serializable
  21. object File extends Serializable
  22. case object JavaThenScala extends CompileOrder with Product with Serializable
  23. object JsConfig extends Serializable
  24. object JvmConfig extends Serializable
  25. object LinkerMode
  26. case object Mixed extends CompileOrder with Product with Serializable
  27. object Module extends Serializable
  28. object ModuleKindJS
  29. object ModuleSplitStyleJS
  30. object NativeBuildTarget
  31. object NativeConfig extends Serializable
  32. object NativeOptions extends Serializable
  33. object Platform
  34. object Project extends Serializable
  35. case object ScalaThenJava extends CompileOrder with Product with Serializable
  36. object SourceGenerator extends AbstractFunction3[List[SourcesGlobs], Path, List[String], SourceGenerator] with SourceGeneratorCompanionPlatform with Serializable
  37. object Test extends Serializable
  38. object TestFramework extends Serializable
  39. object TestOptions extends Serializable

Deprecated Value Members

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

    (Since version 9)

Inherited from AnyRef

Inherited from Any

Ungrouped