Skip to content

Commit

Permalink
Merge pull request #10 from bnorm/kotlin-1.5.30
Browse files Browse the repository at this point in the history
Gradle plugin and dependency updates
  • Loading branch information
bnorm authored Sep 19, 2021
2 parents 3761c26 + 510a986 commit dc6f353
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ buildscript {
}

plugins {
kotlin("jvm") version "1.5.10" apply false
kotlin("jvm") version "1.5.30" apply false
id("org.jetbrains.dokka") version "1.4.32" apply false
id("com.gradle.plugin-publish") version "0.12.0" apply false
id("com.github.gmazzo.buildconfig") version "2.1.0" apply false
id("com.gradle.plugin-publish") version "0.16.0" apply false
id("com.github.gmazzo.buildconfig") version "3.0.3" apply false
}

allprojects {
Expand Down
4 changes: 2 additions & 2 deletions kotlin-ir-plugin-native/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ plugins {
dependencies {
compileOnly("org.jetbrains.kotlin:kotlin-compiler")

kapt("com.google.auto.service:auto-service:1.0-rc7")
compileOnly("com.google.auto.service:auto-service-annotations:1.0-rc7")
kapt("com.google.auto.service:auto-service:1.0")
compileOnly("com.google.auto.service:auto-service-annotations:1.0")
}

tasks.named("compileKotlin") { dependsOn("syncSource") }
Expand Down
6 changes: 3 additions & 3 deletions kotlin-ir-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ plugins {
dependencies {
compileOnly("org.jetbrains.kotlin:kotlin-compiler-embeddable")

kapt("com.google.auto.service:auto-service:1.0-rc7")
compileOnly("com.google.auto.service:auto-service-annotations:1.0-rc7")
kapt("com.google.auto.service:auto-service:1.0")
compileOnly("com.google.auto.service:auto-service-annotations:1.0")

testImplementation(kotlin("test-junit"))
testImplementation("org.jetbrains.kotlin:kotlin-compiler-embeddable")
testImplementation("com.github.tschuchortdev:kotlin-compile-testing:1.4.1")
testImplementation("com.github.tschuchortdev:kotlin-compile-testing:1.4.4")
}

buildConfig {
Expand Down

0 comments on commit dc6f353

Please sign in to comment.