aboutsummaryrefslogtreecommitdiff
path: root/buildSrc/README.md
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2019-06-08 01:09:42 -0400
committerAllan Wang <me@allanwang.ca>2019-06-08 01:09:42 -0400
commitc340f824a8a287cf5e5000a91b668be2e7fe3e0f (patch)
treec8ad475da88e1191f34f18b645d1ea4f29088ff4 /buildSrc/README.md
parent065f2db88e4b87b53b3216a5313d5e1e22fa2867 (diff)
downloadkau-c340f824a8a287cf5e5000a91b668be2e7fe3e0f.tar.gz
kau-c340f824a8a287cf5e5000a91b668be2e7fe3e0f.tar.bz2
kau-c340f824a8a287cf5e5000a91b668be2e7fe3e0f.zip
Add many more dependency declarations in plugin
Diffstat (limited to 'buildSrc/README.md')
-rw-r--r--buildSrc/README.md9
1 files changed, 7 insertions, 2 deletions
diff --git a/buildSrc/README.md b/buildSrc/README.md
index 14ae3d6..de447ae 100644
--- a/buildSrc/README.md
+++ b/buildSrc/README.md
@@ -34,17 +34,22 @@ Currently, the plugin is a collection of simple classes.
## Constants
-`Versions`, `Plugins`, and `Dependencies` supply constants you can use for your classpath and dependencies
+`Versions`, `Plugins`, and `Dependencies` supply constants you can use for your classpath and dependencies.
+Some dependencies are also exposed as functions
Eg
```gradle
dependencies {
...
- implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:${kau.Versions.coroutines}"
+ // The three dependencies below are all the same thing
+ implementation "org.jetbrains.kotlin:kotlin-test-junit:${kau.Versions.kotlin}"
+ implementation kau.Dependencies.kotlinTest
+ implementation kau.Dependencies.kotlin("test-junit")
}
```
+
## Changelog Generator
In conjunction with [core](/core#changelog-xml),