diff options
author | thedarkcolour <30441001+thedarkcolour@users.noreply.github.com> | 2020-04-18 12:45:04 -0700 |
---|---|---|
committer | thedarkcolour <30441001+thedarkcolour@users.noreply.github.com> | 2020-04-18 12:45:04 -0700 |
commit | 40d0b9152bcdc3ad607a2337755297772de6dbe3 (patch) | |
tree | bdd0be04bfb36683ff9a85d41dfd754691ec7f57 | |
parent | d0125086b88a83033483a74b50c2289b07dd53da (diff) | |
download | KotlinForForge-40d0b9152bcdc3ad607a2337755297772de6dbe3.tar.gz KotlinForForge-40d0b9152bcdc3ad607a2337755297772de6dbe3.tar.bz2 KotlinForForge-40d0b9152bcdc3ad607a2337755297772de6dbe3.zip |
Update README.md
-rw-r--r-- | README.md | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -9,6 +9,7 @@ To implement in your project, paste the following into your build.gradle: ```groovy buildscript { repositories { + // For early access Kotlin versions maven { url = "https://dl.bintray.com/kotlin/kotlin-eap" } } dependencies { @@ -21,6 +22,10 @@ apply plugin: 'kotlin' repositories { maven { + name = "Kotlin Early Access" + url = "https://dl.bintray.com/kotlin/kotlin-eap" + } + maven { name = 'kotlinforforge' url = 'https://thedarkcolour.github.io/KotlinForForge/' } |