diff --git a/.gitignore b/.gitignore index 36e1d92..3f8a121 100755 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ build/ classes/ .github/ +property\ \'buildDir\'/ # Ignore Gradle GUI config gradle-app.setting diff --git a/build.gradle b/build.gradle index 6e30512..9970f87 100755 --- a/build.gradle +++ b/build.gradle @@ -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" diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle index 6ae5f33..1e16d04 100755 --- a/buildSrc/build.gradle +++ b/buildSrc/build.gradle @@ -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 { diff --git a/db/build.gradle b/db/build.gradle index 62972bc..902e4a9 100755 --- a/db/build.gradle +++ b/db/build.gradle @@ -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' diff --git a/gradle.properties b/gradle.properties index cc13128..bc0b52d 100755 --- a/gradle.properties +++ b/gradle.properties @@ -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