Skip to content

Commit

Permalink
change; Update Kotlin plugin to _1.5.30_, see [release notes](https:/…
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszkwiecinski authored Aug 24, 2021
1 parent d438262 commit 151c8ba
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 8 deletions.
4 changes: 3 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## Changed
- Update Kotlin plugin to _1.5.30_, see [release notes](https://github.com/JetBrains/kotlin/releases/tag/v1.5.30)

## [0.31.0] - 2021-07-28
## [0.33.0] - 2021-08-21
## Changed
- Update _Android Gradle Plugin_ to _7.0.1_, see [release notes](https://developer.android.com/studio/releases/gradle-plugin)

Expand Down
10 changes: 8 additions & 2 deletions buildSrc/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'java-gradle-plugin'
id "org.jmailen.kotlinter" version "3.5.0"
id 'org.jetbrains.kotlin.jvm' version '1.5.21'
id 'org.jetbrains.kotlin.jvm' version '1.5.30'
}

repositories {
Expand All @@ -11,7 +11,13 @@ repositories {
dependencies {
implementation 'org.jetbrains.kotlin:kotlin-gradle-plugin'
implementation "com.gradle.publish:plugin-publish-plugin:0.15.0"
implementation "com.project.starter:jvm:0.32.0"
implementation "com.project.starter:jvm:0.33.0"
}

java {
toolchain {
languageVersion = JavaLanguageVersion.of(11)
}
}

gradlePlugin {
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/groovy/myproject.java-conventions.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
languageVersion = JavaLanguageVersion.of(11)
}
}
2 changes: 1 addition & 1 deletion quality/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
api 'org.jmailen.gradle:kotlinter-gradle:3.5.0'
api 'io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.18.0'
api 'org.jetbrains.kotlin:kotlin-gradle-plugin'
compileOnly 'com.android.tools.build:gradle:7.0.0'
compileOnly 'com.android.tools.build:gradle:7.0.1'
implementation 'com.github.usefulness:issuechecker:0.3.0'
implementation project(":config")

Expand Down
2 changes: 1 addition & 1 deletion versioning/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repositories {
}

dependencies {
compileOnly 'com.android.tools.build:gradle:7.0.0'
compileOnly 'com.android.tools.build:gradle:7.0.1'
implementation 'pl.allegro.tech.build:axion-release-plugin:1.13.3'
implementation project(":config")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ internal class VersioningPluginTest : WithGradleProjectTest() {
writeText(
"""
plugins {
id 'org.jetbrains.kotlin.jvm' version "1.5.0"
id 'org.jetbrains.kotlin.jvm' version "1.5.30"
}
""".trimIndent(),
)
Expand All @@ -51,7 +51,7 @@ internal class VersioningPluginTest : WithGradleProjectTest() {
writeText(
"""
plugins {
id 'org.jetbrains.kotlin.jvm' version "1.5.0"
id 'org.jetbrains.kotlin.jvm' version "1.5.30"
}
""".trimIndent(),
)
Expand Down

0 comments on commit 151c8ba

Please sign in to comment.