Skip to content

Commit

Permalink
chore(release): add kotlin 1.9.0-Beta
Browse files Browse the repository at this point in the history
  • Loading branch information
woainikk committed Jun 19, 2023
1 parent f3e07d7 commit 6483d9e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ dependencies {
kotlinJsDependency("org.jetbrains.kotlin:kotlin-stdlib-js:$kotlinVersion")

annotationProcessor("org.springframework:spring-context-indexer")
implementation("com.google.code.gson:gson")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("com.amazonaws.serverless:aws-serverless-java-container-springboot2:1.9.3")
implementation("junit:junit:4.13.2")
Expand Down
8 changes: 8 additions & 0 deletions executors/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

val kotlinVersion: String by System.getProperties()

plugins {
Expand All @@ -10,6 +12,12 @@ dependencies {
implementation("junit:junit:4.13.2")
}

tasks.withType<KotlinCompile> {
kotlinOptions {
jvmTarget = "17"
}
}

tasks.withType<Jar>().getByName("jar") {
destinationDirectory.set(File("../$kotlinVersion"))
}
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
systemProp.kotlinVersion=1.8.21
systemProp.kotlinIdeVersion=1.8.21-379
systemProp.kotlinVersion=1.9.0-Beta
systemProp.kotlinIdeVersion=1.9.0-Beta-202
systemProp.kotlinIdeVersionSuffix=IJ8836.35
systemProp.policy=executor.policy
systemProp.indexes=indexes.json
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ include(":executors")
include(":indexation")
include(":common")

pluginManagement{
repositories{
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
}
Expand Down

0 comments on commit 6483d9e

Please sign in to comment.