Skip to content

Latest commit

 

History

History
51 lines (40 loc) · 1.52 KB

readme.adoc

File metadata and controls

51 lines (40 loc) · 1.52 KB

Mill Logo Mill

Build and Release Mill Patreon

Mill is a fast JVM build tool that supports Java and Scala. Mill aims to make your project’s build process performant, maintainable, and flexible.

If you want to use Mill in your own projects, check out our documentation:

Here is some quick example, so that you can imagine how it looks:

import mill._, scalalib._

object foo extends ScalaModule {
  def scalaVersion = "3.3.4"
}

object bar extends ScalaModule {
  def moduleDeps = Seq(foo)
  def scalaVersion = "3.3.4"
}
  • developer.adoc[Developer Documentation]

  • changelog.adoc[Changelog]