Skip to content

Commit

Permalink
upgrade Kotlin version to 2.0.0-Beta2, upgrade Kotlinx Coroutine vers…
Browse files Browse the repository at this point in the history
…ion to 1.8.0.RC
  • Loading branch information
danurahadi committed Dec 17, 2023
1 parent 051fa7a commit b24bee0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 12 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
build/
classes/
.github/
property\ \'buildDir\'/

# Ignore Gradle GUI config
gradle-app.setting
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
ext {
version = project.property('version')

kotlinVersion = "1.9.21"
kotlinVersion = "2.0.0-Beta2"
vertxVersion = '4.5.1'
pebbleVersion = '3.2.1'

coroutineVersion = "1.7.3"
coroutineVersion = "1.8.0-RC"
arrowVersion = "0.7.2"
detektVersion = "1.23.4"

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id 'groovy-gradle-plugin'
}

def kotlinVersion = '1.9.21'
def kotlinVersion = '2.0.0-Beta2'
def detektVersion = '1.23.4'

repositories {
Expand Down
6 changes: 0 additions & 6 deletions db/build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
buildscript {
dependencies {
classpath "org.flywaydb:flyway-database-postgresql:$flywayVersion"
}
}

plugins {
// Apply the db convention plugin for shared build configuration between module / subprojects.
id 'yoframework.kotlin-db-conventions'
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ org.gradle.daemon=false
org.gradle.caching=false

# Enable parallelize build
org.gradle.parallel=false
org.gradle.parallel=true

# Enable configure on demand
org.gradle.configureondemand=false
org.gradle.configureondemand=true

# Enable new incremental compilation
kotlin.incremental.useClasspathSnapshot=false
kotlin.incremental.useClasspathSnapshot=true

kapt.include.compile.classpath=false

0 comments on commit b24bee0

Please sign in to comment.