-
-
Notifications
You must be signed in to change notification settings - Fork 377
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Break out `{language} Library Dependencies` from `{language} Module Configuration` * Move `Search for dependency updates` to `Library Dependencies in Mill` * Remove the now-unnecessary `show` from `visualize` commands * `import $ivy` now starts with a Java example * `Running Mill with custom JVM options` moved to `Installation and IDE support`
- Loading branch information
Showing
77 changed files
with
581 additions
and
396 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,19 @@ | ||
= import $file and import $ivy | ||
= import $ivy | ||
:page-aliases: Import_File_And_Import_Ivy.adoc | ||
|
||
include::partial$example/extending/imports/3-import-ivy.adoc[] | ||
// This page illustrates usage of `import $ivy`. | ||
// `import $ivy` lets you import JVM dependencies into your `build.mill`, so | ||
// you can use arbitrary third-party libraries at build-time. This makes | ||
// lets you perform computations at build-time rather than run-time, | ||
// speeding up your application start up. `import $ivy` can be used on any | ||
// JVM library on Maven Central. | ||
// | ||
|
||
== Importing Java Libraries | ||
|
||
include::partial$example/extending/imports/1-import-ivy.adoc[] | ||
|
||
|
||
== Importing Scala Libraries | ||
|
||
include::partial$example/extending/imports/2-import-ivy-scala.adoc[] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
= Built-in Commands | ||
:page-aliases: Java_Builtin_Commands.adoc | ||
|
||
:language: Java | ||
:language-small: java | ||
|
||
|
||
include::partial$example/javalib/basic/4-builtin-commands.adoc[] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
= Java Library Dependencies | ||
|
||
++++ | ||
<script> | ||
gtag('config', 'AW-16649289906'); | ||
</script> | ||
++++ | ||
|
||
This page goes into more detail about configuring third party dependencies | ||
for `JavaModule`. | ||
|
||
== Adding Ivy Dependencies | ||
|
||
include::partial$example/javalib/dependencies/1-ivy-deps.adoc[] | ||
|
||
== Runtime and Compile-time Dependencies | ||
|
||
include::partial$example/javalib/dependencies/2-run-compile-deps.adoc[] | ||
|
||
|
||
== Unmanaged Jars | ||
|
||
include::partial$example/javalib/dependencies/3-unmanaged-jars.adoc[] | ||
|
||
== Downloading Non-Maven Jars | ||
|
||
include::partial$example/javalib/dependencies/4-downloading-non-maven-jars.adoc[] | ||
|
||
== Repository Config | ||
|
||
include::partial$example/javalib/dependencies/5-repository-config.adoc[] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
= Installation and IDE Support | ||
:page-aliases: Java_Installation_IDE_Support.adoc | ||
|
||
:language: Java | ||
:language-small: java | ||
|
||
include::partial$Installation_IDE_Support.adoc[] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
= Kotlin Library Dependencies | ||
|
||
++++ | ||
<script> | ||
gtag('config', 'AW-16649289906'); | ||
</script> | ||
++++ | ||
|
||
This page goes into more detail about the various configuration options | ||
for `KotlinModule`. | ||
|
||
Many of the APIs covered here are listed in the API documentation: | ||
|
||
* {mill-doc-url}/api/latest/mill/kotlinlib/KotlinModule.html[mill.kotlinlib.KotlinModule] | ||
== Adding Ivy Dependencies | ||
|
||
include::partial$example/kotlinlib/dependencies/1-ivy-deps.adoc[] | ||
|
||
== Runtime and Compile-time Dependencies | ||
|
||
include::partial$example/kotlinlib/dependencies/2-run-compile-deps.adoc[] | ||
|
||
== Unmanaged Jars | ||
|
||
include::partial$example/kotlinlib/dependencies/3-unmanaged-jars.adoc[] | ||
|
||
== Downloading Non-Maven Jars | ||
|
||
include::partial$example/kotlinlib/dependencies/4-downloading-non-maven-jars.adoc[] | ||
|
||
== Repository Config | ||
|
||
include::partial$example/kotlinlib/dependencies/5-repository-config.adoc[] |
Oops, something went wrong.