trait MainModule extends Module

Linear Supertypes
define.Module, Cacher, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MainModule
  2. Module
  3. Cacher
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. implicit abstract def millDiscover: Discover[_]

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def cachedTarget[T](t: => T)(implicit c: Enclosing): T
    Attributes
    protected[this]
    Definition Classes
    Cacher
  6. def clean(evaluator: Evaluator, targets: String*): Command[Seq[api.PathRef]]

    Deletes the given targets from the out directory.

    Deletes the given targets from the out directory. Providing no targets will clean everything.

    Annotations
    @Scaladoc()
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def init(evaluator: Evaluator, args: String*): Command[Unit]
  14. def inspect(evaluator: Evaluator, targets: String*): Command[String]

    Displays metadata about the given task without actually running it.

    Displays metadata about the given task without actually running it.

    Annotations
    @Scaladoc()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. implicit def millModuleBasePath: BasePath
    Definition Classes
    Module
  17. lazy val millModuleDirectChildren: Seq[define.Module]
    Definition Classes
    Module
  18. implicit def millModuleExternal: External
    Definition Classes
    Module
  19. implicit def millModuleSegments: Segments
    Definition Classes
    Module
  20. implicit def millModuleShared: Foreign
    Definition Classes
    Module
  21. def millOuterCtx: Ctx
    Definition Classes
    Module
  22. implicit def millScoptEvaluatorReads[T]: EvaluatorScopt[T]
  23. implicit def millScoptTasksReads[T]: Scopt[T]
  24. def millSourcePath: Path
    Definition Classes
    Module
  25. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. def path(evaluator: Evaluator, src: String, dest: String): Command[List[String]]

    Prints out some dependency path from the src task to the dest task.

    Prints out some dependency path from the src task to the dest task.

    If there are multiple dependency paths between src and dest, the path chosen is arbitrary.

    Annotations
    @Scaladoc()
  29. def plan(evaluator: Evaluator, targets: String*): Command[Array[String]]

    Given a set of tasks, prints out the execution plan of what tasks will be executed in what order, without actually executing them.

    Given a set of tasks, prints out the execution plan of what tasks will be executed in what order, without actually executing them.

    Annotations
    @Scaladoc()
  30. def resolve(evaluator: Evaluator, targets: String*): Command[List[String]]

    Resolves a mill query string and prints out the tasks it resolves to.

    Resolves a mill query string and prints out the tasks it resolves to.

    Annotations
    @Scaladoc()
  31. def show(evaluator: Evaluator, targets: String*): Command[Value]

    Runs a given task and prints the JSON result to stdout.

    Runs a given task and prints the JSON result to stdout. This is useful to integrate Mill into external scripts and tooling.

    Annotations
    @Scaladoc()
  32. def showNamed(evaluator: Evaluator, targets: String*): Command[Value]

    Runs a given task and prints the results as JSON dictionary to stdout.

    Runs a given task and prints the results as JSON dictionary to stdout. This is useful to integrate Mill into external scripts and tooling.

    Annotations
    @Scaladoc()
  33. def shutdown(): Command[Unit]

    Shuts down mill's background server

    Shuts down mill's background server

    Annotations
    @Scaladoc()
  34. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  35. implicit def taskTokensReader[T](implicit tokensReaderOfT: TokensReader[T]): TokensReader[Task[T]]
  36. def toString(): String
    Definition Classes
    Module → AnyRef → Any
  37. def version(): Command[String]

    Show the mill version.

    Show the mill version.

    Annotations
    @Scaladoc()
  38. def visualize(evaluator: Evaluator, targets: String*): Command[Seq[api.PathRef]]

    Renders the dependencies between the given tasks as a SVG for you to look at

    Renders the dependencies between the given tasks as a SVG for you to look at

    Annotations
    @Scaladoc()
  39. def visualizePlan(evaluator: Evaluator, targets: String*): Command[Seq[api.PathRef]]

    Renders the dependencies between the given tasks, and all their dependencies, as a SVG

    Renders the dependencies between the given tasks, and all their dependencies, as a SVG

    Annotations
    @Scaladoc()
  40. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  41. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  42. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  43. object millInternal extends Internal
    Definition Classes
    Module
    Annotations
    @Scaladoc()

Deprecated Value Members

  1. def all(evaluator: Evaluator, targets: String*): Command[Watched[Unit]]

    Runs multiple tasks in a single call.

    Runs multiple tasks in a single call. For compatibility reasons, the tasks are executed single-threaded.

    Annotations
    @Scaladoc() @deprecated
    Deprecated

    (Since version mill after 0.10.0-M3) Use the + separator, wildcards, or brace-expansion to specify multiple targets.

  2. def par(evaluator: Evaluator, targets: String*): Command[Watched[Unit]]

    Runs multiple tasks in a single call in parallel.

    Runs multiple tasks in a single call in parallel.

    Annotations
    @Scaladoc() @deprecated
    Deprecated

    (Since version mill after 0.10.0-M3) Use the + separator, wildcards, or brace-expansion to specify multiple targets.

Inherited from define.Module

Inherited from Cacher

Inherited from AnyRef

Inherited from Any

Ungrouped