Skip to content
This repository has been archived by the owner on Jun 22, 2024. It is now read-only.

Commit

Permalink
chore(examples): Remove jvm version
Browse files Browse the repository at this point in the history
  • Loading branch information
sya-ri committed Nov 10, 2023
1 parent 1aee8e8 commit 1bc9899
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 28 deletions.
14 changes: 0 additions & 14 deletions examples/e2e/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile

apply(plugin = "kotlin")

plugins {
Expand All @@ -12,18 +10,6 @@ dependencies {
implementation("io.ktor:ktor-client-cio:2.3.6")
}

tasks.withType(KotlinJvmCompile::class.java).configureEach {
kotlinOptions.apply {
jvmTarget = "1.8"
}
}

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

application {
mainClass.set("dev.s7a.example.gofile.Main")
}
14 changes: 0 additions & 14 deletions examples/jvm/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile

apply(plugin = "kotlin")

plugins {
Expand All @@ -12,18 +10,6 @@ dependencies {
implementation("io.ktor:ktor-client-cio:2.3.6")
}

tasks.withType(KotlinJvmCompile::class.java).configureEach {
kotlinOptions.apply {
jvmTarget = "1.8"
}
}

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

application {
mainClass.set("dev.s7a.example.gofile.Main")
}

0 comments on commit 1bc9899

Please sign in to comment.