Skip to content

0.4.0

Compare
Choose a tag to compare
@eed3si9n eed3si9n released this 12 Feb 18:36
· 132 commits to develop since this release
v0.4.0

auto plugin

@nrinaudo contributed migration to auto plugin in #31.

Before:

import UnidocKeys._
val root = (project in file("."))
  .aggregate(library, app)
  .settings(commonSettings: _*)
  .settings(unidocSettings: _*)

After:

val root = (project in file("."))
  .enablePlugins(ScalaUnidocPlugin)
  .aggregate(library, app)
  .settings(commonSettings: _*)