summaryrefslogtreecommitdiff
path: root/docs/pages/2 - Configuring Mill.md
diff options
context:
space:
mode:
authorBjørn Madsen <bm@aeons.dk>2018-02-19 23:48:37 +0100
committerLi Haoyi <haoyi.sg@gmail.com>2018-02-19 14:48:37 -0800
commit045ca9ab4be1959e17a50a958eb744a4ecbcaadb (patch)
treefc0cbe515a3e38c177b21920478ed36d12454096 /docs/pages/2 - Configuring Mill.md
parentfb8c75c01f86f41a62e549eb03953789658f7cae (diff)
downloadmill-045ca9ab4be1959e17a50a958eb744a4ecbcaadb.tar.gz
mill-045ca9ab4be1959e17a50a958eb744a4ecbcaadb.tar.bz2
mill-045ca9ab4be1959e17a50a958eb744a4ecbcaadb.zip
Mention the ::: variant of ivy deps (#141)
Diffstat (limited to 'docs/pages/2 - Configuring Mill.md')
-rw-r--r--docs/pages/2 - Configuring Mill.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/pages/2 - Configuring Mill.md b/docs/pages/2 - Configuring Mill.md
index 3c6ec696..d976aa57 100644
--- a/docs/pages/2 - Configuring Mill.md
+++ b/docs/pages/2 - Configuring Mill.md
@@ -56,7 +56,9 @@ object foo extends ScalaModule {
You can define the `ivyDeps` field to add ivy dependencies to your module. The
`ivy"com.lihaoyi::upickle:0.5.1"` syntax (with `::`) represents Scala
dependencies; for Java dependencies you would use a single `:` e.g.
-`ivy"com.lihaoyi:upickle:0.5.1"`.
+`ivy"com.lihaoyi:upickle:0.5.1"`. If you have dependencies cross-published
+against the full Scala version (eg. `2.12.4` instead of just `2.12`),
+you can use `:::` as in `ivy"org.scalamacros:::paradise:2.1.1"`.
By default these are resolved from maven central, but you can add your own
resolvers by overriding the `repositories` definition in the module: