Skip to content

Commit

Permalink
Bump Kotlin to 1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
pjagielski committed Jan 13, 2023
1 parent 1995509 commit b5425c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions annotation-processor/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ dependencies {
implementation("org.jetbrains.kotlin:kotlin-reflect:${Versions.kotlin}")
implementation("com.squareup:kotlinpoet:${Versions.kotlinpoet}")
implementation("com.squareup:kotlinpoet-metadata:${Versions.kotlinpoet}")
// needed until kotlipoet supports kotlin 1.8 directly
implementation("org.jetbrains.kotlinx:kotlinx-metadata-jvm:${Versions.kotlinxMetadata}")

api("org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.2.Final")

Expand Down
3 changes: 2 additions & 1 deletion buildSrc/src/main/kotlin/pl/touk/krush/gradle/Versions.kt
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package pl.touk.krush.gradle

object Versions {
const val kotlin = "1.7.10"
const val kotlin = "1.8.0"
const val exposed = "0.38.2"
const val kotlinpoet = "1.12.0"
const val kotlinxMetadata = "0.5.0"
const val postgresDriver = "42.4.0"
const val junit = "5.8.2"
const val assertj = "3.23.1"
Expand Down

0 comments on commit b5425c7

Please sign in to comment.