Packages

trait KotlinModule extends Module with JavaModule with KotlinModulePlatform

Self Type
KotlinModule
Linear Supertypes
KotlinModulePlatform, JavaModule, CoursierModule, GenIdeaModule, TaskModule, Module, Cacher, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. KotlinModule
  2. KotlinModulePlatform
  3. JavaModule
  4. CoursierModule
  5. GenIdeaModule
  6. TaskModule
  7. Module
  8. Cacher
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. type CompileProblemReporter = BuildProblemReporter
    Definition Classes
    KotlinModulePlatform
  2. type JavaModuleTests = KotlinModule.Tests
    Definition Classes
    KotlinModulePlatform
  3. trait KotlinModuleTests extends Module with JavaModuleTests with KotlinTestModule

    A test sub-module linked to its parent module best suited for unit-tests.

  4. type ModuleRef[T] = () => T
    Attributes
    protected
    Definition Classes
    KotlinModulePlatform

Deprecated Type Members

  1. trait Tests extends Module with KotlinModuleTests
    Annotations
    @deprecated
    Deprecated

    (Since version mill-kotlin after 0.2.2) Use KotlinModuleTests instead.

Abstract Value Members

  1. abstract def kotlinVersion: T[String]

    The Kotlin version to be used (for API and Language level settings).

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 allJavaSourceFiles: Target[Seq[PathRef]]

    All individual Java source files fed into the compiler.

    All individual Java source files fed into the compiler. Subset of allSourceFiles.

  5. def allKotlinSourceFiles: Target[Seq[PathRef]]

    All individual Kotlin source files fed into the compiler.

    All individual Kotlin source files fed into the compiler. Subset of allSourceFiles.

  6. def allSourceFiles: Target[Seq[PathRef]]

    All individual source files fed into the compiler.

    All individual source files fed into the compiler.

    Definition Classes
    KotlinModule → JavaModule
  7. def allSources: Target[Seq[PathRef]]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  8. def artifactId: T[String]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  9. def artifactName: T[String]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def assembly: Target[PathRef]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  12. def assemblyRules: Seq[Rule]
    Definition Classes
    JavaModule
  13. def cachedTarget[T](t: => T)(implicit c: Enclosing): T
    Attributes
    protected[this]
    Definition Classes
    Cacher
  14. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  15. def compile: T[CompilationResult]

    Compiles all the sources to JVM class files.

    Compiles all the sources to JVM class files.

    Definition Classes
    KotlinModule → JavaModule
  16. def compileClasspath: Target[mill.api.Loose.Agg[PathRef]]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  17. def compileIvyDeps: Target[mill.api.Loose.Agg[Dep]]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  18. def defaultCommandName(): String
    Definition Classes
    JavaModule → TaskModule
  19. def docJar: Target[PathRef]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  20. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  22. def finalMainClass: T[String]
    Definition Classes
    JavaModule
  23. def finalMainClassOpt: T[Either[String, String]]
    Definition Classes
    JavaModule
  24. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  25. def forkArgs: Target[Seq[String]]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  26. def forkEnv: Target[Map[String, String]]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  27. def forkWorkingDir: Target[Path]
    Definition Classes
    JavaModule
  28. def generatedSources: Target[Seq[PathRef]]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  29. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  30. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  31. def ideaCompileOutput: T[PathRef]
    Definition Classes
    GenIdeaModule
  32. def ideaConfigFiles(ideaConfigVersion: Int): Command[Seq[IdeaConfigFile]]
    Definition Classes
    GenIdeaModule
    Annotations
    @Scaladoc()
  33. def ideaJavaModuleFacets(ideaConfigVersion: Int): Command[Seq[JavaFacet]]
    Definition Classes
    GenIdeaModule
    Annotations
    @Scaladoc()
  34. def intellijModulePath: Path
    Definition Classes
    GenIdeaModule
  35. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  36. def ivyDeps: T[Agg[Dep]]

    The dependencies of this module.

    The dependencies of this module. Defaults to add the kotlin-stdlib dependency matching the kotlinVersion.

    Definition Classes
    KotlinModule → JavaModule
  37. def ivyDepsTree(inverse: Boolean, withCompile: Boolean, withRuntime: Boolean): Command[Unit]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  38. def jar: Target[PathRef]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  39. def javacOptions: Target[Seq[String]]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  40. def javadocOptions: T[Seq[String]]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  41. def kotlinCompileTask(extraKotlinArgs: Seq[String] = Seq()): Task[CompilationResult]

    The actual Kotlin compile task (used by compile and kotlincHelp.

    The actual Kotlin compile task (used by compile and kotlincHelp.

    Attributes
    protected
  42. def kotlinCompilerClasspath: T[Seq[PathRef]]

    The Java classpath resembling the Kotlin compiler.

    The Java classpath resembling the Kotlin compiler. Default is derived from kotlinCompilerIvyDeps.

    Definition Classes
    KotlinModulePlatform
  43. def kotlinCompilerIvyDeps: T[Agg[Dep]]

    The Ivy/Coursier dependencies resembling the Kotlin compiler.

    The Ivy/Coursier dependencies resembling the Kotlin compiler. Default is derived from kotlinCompilerVersion.

    Definition Classes
    KotlinModuleKotlinModulePlatform
  44. def kotlinCompilerVersion: T[String]

    The version of the Kotlin compiler to be used.

    The version of the Kotlin compiler to be used. Default is derived from kotlinVersion.

  45. def kotlinWorkerRef: ModuleRef[KotlinWorkerModule]
    Attributes
    protected
    Definition Classes
    KotlinModulePlatform
  46. def kotlinWorkerTask: Task[KotlinWorker]
  47. def kotlincHelp(args: String*): Command[Unit]

    Runs the Kotlin compiler with the -help argument to show you the built-in cmdline help.

    Runs the Kotlin compiler with the -help argument to show you the built-in cmdline help. You might want to add additional arguments like -X to see extra help.

  48. def kotlincOptions: T[Seq[String]]

    Additional Kotlin compiler options to be use by compile.

  49. def launcher: Target[PathRef]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  50. def localClasspath: Target[Seq[PathRef]]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  51. def mainClass: T[Option[String]]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  52. def manifest: T[JarManifest]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  53. def mapDependencies: Task[(Dependency) => Dependency]
    Definition Classes
    CoursierModule
    Annotations
    @Scaladoc()
  54. implicit def millModuleBasePath: BasePath
    Definition Classes
    Module
  55. lazy val millModuleDirectChildren: Seq[Module]
    Definition Classes
    Module
  56. implicit def millModuleExternal: External
    Definition Classes
    Module
  57. implicit def millModuleSegments: Segments
    Definition Classes
    Module
  58. implicit def millModuleShared: Foreign
    Definition Classes
    Module
  59. def millOuterCtx: Ctx
    Definition Classes
    Module
  60. def millSourcePath: Path
    Definition Classes
    Module
  61. def moduleDeps: Seq[JavaModule]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  62. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  63. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  64. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  65. def platformSuffix: T[String]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  66. def prependShellScript: T[String]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  67. def printDepsTree(inverse: Boolean, additionalDeps: Task[mill.api.Loose.Agg[Dep]]): Task[Unit]
    Attributes
    protected
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  68. def recursiveModuleDeps: Seq[JavaModule]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  69. def repositories: Seq[Repository]
    Definition Classes
    JavaModule → CoursierModule
  70. def resolveCoursierDependency: Task[(Dep) => Dependency]
    Definition Classes
    CoursierModule
  71. def resolveDeps(deps: Task[Agg[Dep]], sources: Boolean): Task[Agg[PathRef]]
    Definition Classes
    CoursierModule
    Annotations
    @Scaladoc()
  72. def resolvePublishDependency: Task[(Dep) => Dependency]
    Definition Classes
    JavaModule
  73. def resources: Sources
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  74. def run(args: String*): Command[Unit]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  75. def runBackground(args: String*): Command[Unit]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  76. def runClasspath: Target[Seq[PathRef]]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  77. def runIvyDeps: Target[mill.api.Loose.Agg[Dep]]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  78. def runLocal(args: String*): Command[Unit]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  79. def runMain(mainClass: String, args: String*): Command[Unit]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  80. def runMainBackground(mainClass: String, args: String*): Command[Unit]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  81. def runMainLocal(mainClass: String, args: String*): Command[Unit]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  82. def skipIdea: Boolean
    Definition Classes
    GenIdeaModule
    Annotations
    @Scaladoc()
  83. def sourceJar: Target[PathRef]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  84. def sources: Sources
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  85. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  86. def toString(): String
    Definition Classes
    Module → AnyRef → Any
  87. def transitiveIvyDeps: T[mill.api.Loose.Agg[Dep]]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  88. def transitiveLocalClasspath: T[mill.api.Loose.Agg[PathRef]]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  89. def transitiveModuleDeps: Seq[JavaModule]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  90. def unmanagedClasspath: Target[mill.api.Loose.Agg[PathRef]]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  91. def upstreamAssembly: Target[PathRef]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  92. def upstreamAssemblyClasspath: Target[mill.api.Loose.Agg[PathRef]]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  93. def upstreamCompileOutput: Target[Seq[CompilationResult]]
    Definition Classes
    JavaModule
    Annotations
    @Scaladoc()
  94. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  95. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  96. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  97. def when(cond: Boolean)(args: String*): Seq[String]
    Attributes
    protected
  98. def zincWorker: ZincWorkerModule
    Definition Classes
    JavaModule
  99. def zincWorkerRef: ModuleRef[ZincWorkerModule]
    Attributes
    protected
    Definition Classes
    KotlinModulePlatform
  100. object millInternal extends Internal
    Definition Classes
    Module
    Annotations
    @Scaladoc()

Inherited from KotlinModulePlatform

Inherited from JavaModule

Inherited from CoursierModule

Inherited from GenIdeaModule

Inherited from TaskModule

Inherited from Module

Inherited from Cacher

Inherited from AnyRef

Inherited from Any

Ungrouped