diff options
Diffstat (limited to 'build.gradle')
| -rw-r--r-- | build.gradle | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/build.gradle b/build.gradle index 8ce1956a..96031cd8 100644 --- a/build.gradle +++ b/build.gradle @@ -23,23 +23,25 @@ */ plugins { - id 'org.jetbrains.kotlin.jvm' version '1.2.51' apply false - id 'org.jetbrains.kotlin.plugin.jpa' version '1.2.51' apply false + id 'org.jetbrains.kotlin.jvm' version '1.3.0-rc-198' apply false id 'org.jetbrains.dokka' version '0.9.17' apply false } allprojects { group = 'com.atlarge.opendc' - version = '1.2' + version = '2.0.0' ext { - kotlinx_coroutines_version = '0.23.4' - junit_jupiter_version = '5.2.0' - junit_platform_version = '1.2.0' - jacoco_version = '0.8.2-SNAPSHOT' + junit_jupiter_version = '5.3.1' + junit_platform_version = '1.3.1' } } wrapper { - gradleVersion = '4.8' + gradleVersion = '4.10' } + +// Wait for children to evaluate so we can configure tasks that are dependant on children +project.evaluationDependsOnChildren() + +apply from: 'gradle/jacoco.gradle' |
