summaryrefslogtreecommitdiff
path: root/docs/pages/1 - Intro to Mill.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/pages/1 - Intro to Mill.md')
-rw-r--r--docs/pages/1 - Intro to Mill.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/pages/1 - Intro to Mill.md b/docs/pages/1 - Intro to Mill.md
index ea0bac7a..7bd3ac6d 100644
--- a/docs/pages/1 - Intro to Mill.md
+++ b/docs/pages/1 - Intro to Mill.md
@@ -44,7 +44,7 @@ pkg install mill
### Windows
To get started, download Mill from:
-https://github.com/lihaoyi/mill/releases/download/0.3.6/0.3.6, and save it as
+https://github.com/lihaoyi/mill/releases/download/0.3.9/0.3.9, and save it as
`mill.bat`.
If you're using [Scoop](https://scoop.sh) you can install Mill via
@@ -81,7 +81,7 @@ To get started, download Mill and install it into your system via the following
`curl`/`chmod` command:
```bash
-sudo sh -c '(echo "#!/usr/bin/env sh" && curl -L https://github.com/lihaoyi/mill/releases/download/0.3.6/0.3.6) > /usr/local/bin/mill && chmod +x /usr/local/bin/mill'
+sudo sh -c '(echo "#!/usr/bin/env sh" && curl -L https://github.com/lihaoyi/mill/releases/download/0.3.9/0.3.9) > /usr/local/bin/mill && chmod +x /usr/local/bin/mill'
```
### Development Releases
@@ -739,6 +739,9 @@ object foo extends ScalaModule with PublishModule {
}
```
+You can change the name of the published artifact (artifactId in the Maven POM)
+by overriding `artifactName` in the module you want to publish.
+
You can download an example project with this layout here:
- [Example 2](example-2.zip)