summaryrefslogtreecommitdiff
path: root/buildSrc
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2022-01-11 17:23:42 +0100
committerGitHub <noreply@github.com>2022-01-11 17:23:42 +0100
commit33b9f1d73210c50fdc944c93cf87cebf45bd0cf5 (patch)
tree774d9d259b7accb4910baf37cfc114c5c40175ad /buildSrc
parente0150bbd81c6f1f53f041882942786747894e9f0 (diff)
parentd0515c3a1fd21b82a595b717678cc85f7ba123b8 (diff)
merge: Update to Kotlin 1.6.10
This pull request updates the OpenDC codebase to use Kotlin 1.6.10 for building the project. * Update to Kotlin 1.6.10 * Update build dependencies to their latest version * Update project dependencies to their latest version where possible. * Add Dependabot configuration
Diffstat (limited to 'buildSrc')
-rw-r--r--buildSrc/build.gradle.kts10
1 files changed, 5 insertions, 5 deletions
diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts
index f38919fd..760f0cab 100644
--- a/buildSrc/build.gradle.kts
+++ b/buildSrc/build.gradle.kts
@@ -31,10 +31,10 @@ repositories {
}
dependencies {
- implementation(kotlin("gradle-plugin", version = "1.6.0"))
- implementation("org.jlleitschuh.gradle:ktlint-gradle:10.2.0")
- implementation("org.jetbrains.kotlin:kotlin-allopen:1.6.0")
+ implementation(kotlin("gradle-plugin", version = "1.6.10"))
+ implementation("org.jlleitschuh.gradle:ktlint-gradle:10.2.1")
+ implementation("org.jetbrains.kotlin:kotlin-allopen:1.6.10")
implementation("me.champeau.jmh:jmh-gradle-plugin:0.6.6")
- implementation("org.jetbrains.dokka:dokka-gradle-plugin:1.5.30")
- implementation("gradle.plugin.com.github.jengelman.gradle.plugins:shadow:7.0.0")
+ implementation("org.jetbrains.dokka:dokka-gradle-plugin:1.6.10")
+ implementation("gradle.plugin.com.github.johnrengelman:shadow:7.1.2")
}