summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2018-02-21 09:09:01 -0800
committerLi Haoyi <haoyi.sg@gmail.com>2018-02-21 09:09:01 -0800
commita286ec2473e09ea53bb9e811511378c56ed7e5c4 (patch)
treeaed5f556d3e86cb01f70d9ee325bd6559abbd394
parent9d22d7127b8e49c007100f0173e01a35b2e68540 (diff)
parent9c464c9f868177a6a97a8e13cb0e5c42e3d252bc (diff)
downloadmill-a286ec2473e09ea53bb9e811511378c56ed7e5c4.tar.gz
mill-a286ec2473e09ea53bb9e811511378c56ed7e5c4.tar.bz2
mill-a286ec2473e09ea53bb9e811511378c56ed7e5c4.zip
Merge branch 'master' into server-client
-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: