Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add in mill-giter8 to thirdparty plugins #1993

Merged
merged 1 commit into from
Aug 15, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions docs/antora/modules/ROOT/pages/Thirdparty_Plugins.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,30 @@ Limited fish completion support.

Project home: https://github.com/ckipp01/mill-fish-completions

== Giter8

A plugin to test the generation of your
http://www.foundweekends.org/giter8/index.html[Giter8] template and expected
working targets for your template after generation.

Project home: https://github.com/ckipp01/mill-giter8

=== Quickstart

.`build.sc`
[source,scala]
----
import $ivy.`io.chris-kipp::mill-giter8::0.2.0`

import io.kipp.mill.giter8.G8Module

object g8 extends G8Module {
override def validationTargets =
Seq("example.compile", "example.fix", "example.reformat")
}
----

The most common target you'd then use is `mill g8.validate`.

== Git

Expand Down