Skip to content

Commit

Permalink
Add root gradle project
Browse files Browse the repository at this point in the history
  • Loading branch information
ligee committed Feb 7, 2020
1 parent fec8a71 commit 6e8c86b
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
14 changes: 14 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

plugins {
kotlin("jvm") version "1.3.70-eap-184"
}

val kotlinVersion: String by extra("1.3.70-eap-184")

allprojects {
repositories {
maven("https://dl.bintray.com/kotlin/kotlin-eap")
jcenter()
}
}

7 changes: 7 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

pluginManagement {
repositories {
gradlePluginPortal()
maven { url = uri("https://dl.bintray.com/kotlin/kotlin-eap") }
}
}

0 comments on commit 6e8c86b

Please sign in to comment.