summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/example-2/build.sc4
-rw-r--r--docs/pages/1 - Intro to Mill.md4
-rw-r--r--docs/pages/3 - Common Project Layouts.md4
3 files changed, 3 insertions, 9 deletions
diff --git a/docs/example-2/build.sc b/docs/example-2/build.sc
index 30e4be05..9457b51a 100644
--- a/docs/example-2/build.sc
+++ b/docs/example-2/build.sc
@@ -9,9 +9,7 @@ object foo extends PublishModule{
description = "Hello",
organization = "com.lihaoyi",
url = "https://github.com/lihaoyi/example",
- licenses = Seq(
- License("MIT license", "http://www.opensource.org/licenses/mit-license.php")
- ),
+ licenses = Seq(License.MIT),
scm = SCM(
"git://github.com/lihaoyi/example.git",
"scm:git://github.com/lihaoyi/example.git"
diff --git a/docs/pages/1 - Intro to Mill.md b/docs/pages/1 - Intro to Mill.md
index f1b72a9d..65a83b8a 100644
--- a/docs/pages/1 - Intro to Mill.md
+++ b/docs/pages/1 - Intro to Mill.md
@@ -487,9 +487,7 @@ object foo extends PublishModule{
description = "Hello",
organization = "com.lihaoyi",
url = "https://github.com/lihaoyi/example",
- licenses = Seq(
- License("MIT license", "http://www.opensource.org/licenses/mit-license.php")
- ),
+ licenses = Seq(License.MIT),
scm = SCM(
"git://github.com/lihaoyi/example.git",
"scm:git://github.com/lihaoyi/example.git"
diff --git a/docs/pages/3 - Common Project Layouts.md b/docs/pages/3 - Common Project Layouts.md
index 9fe4a4fa..275971a6 100644
--- a/docs/pages/3 - Common Project Layouts.md
+++ b/docs/pages/3 - Common Project Layouts.md
@@ -129,9 +129,7 @@ object foo extends ScalaModule with PublishModule{
description = "My first library",
organization = "com.lihaoyi",
url = "https://github.com/lihaoyi/mill",
- licenses = Seq(
- License("MIT license", "http://www.opensource.org/licenses/mit-license.php")
- ),
+ licenses = Seq(License.MIT),
scm = SCM(
"git://github.com/lihaoyi/mill.git",
"scm:git://github.com/lihaoyi/mill.git"