Skip to content

Commit

Permalink
k2
Browse files Browse the repository at this point in the history
  • Loading branch information
Hummel009 committed May 23, 2024
1 parent 85a9f72 commit 427b477
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 17 deletions.
5 changes: 1 addition & 4 deletions appLab1/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ version = LocalDate.now().format(DateTimeFormatter.ofPattern("yy.MM.dd"))
val embed: Configuration by configurations.creating

dependencies {
embed("org.jetbrains.kotlin:kotlin-stdlib:1.9.24")
embed("org.jetbrains.kotlin:kotlin-stdlib:2.0.0")
embed("com.formdev:flatlaf:3.4.1")
embed("com.formdev:flatlaf-intellij-themes:3.4.1")
implementation("com.formdev:flatlaf:3.4.1")
Expand All @@ -30,9 +30,6 @@ application {
}

tasks {
named<JavaExec>("run") {
standardInput = System.`in`
}
jar {
manifest {
attributes(
Expand Down
5 changes: 1 addition & 4 deletions appLab2/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ version = LocalDate.now().format(DateTimeFormatter.ofPattern("yy.MM.dd"))
val embed: Configuration by configurations.creating

dependencies {
embed("org.jetbrains.kotlin:kotlin-stdlib:1.9.24")
embed("org.jetbrains.kotlin:kotlin-stdlib:2.0.0")
embed("com.formdev:flatlaf:3.4.1")
embed("com.formdev:flatlaf-intellij-themes:3.4.1")
implementation("com.formdev:flatlaf:3.4.1")
Expand All @@ -30,9 +30,6 @@ application {
}

tasks {
named<JavaExec>("run") {
standardInput = System.`in`
}
jar {
manifest {
attributes(
Expand Down
5 changes: 1 addition & 4 deletions appLab3/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ version = LocalDate.now().format(DateTimeFormatter.ofPattern("yy.MM.dd"))
val embed: Configuration by configurations.creating

dependencies {
embed("org.jetbrains.kotlin:kotlin-stdlib:1.9.24")
embed("org.jetbrains.kotlin:kotlin-stdlib:2.0.0")
embed("com.formdev:flatlaf:3.4.1")
embed("com.formdev:flatlaf-intellij-themes:3.4.1")
implementation("com.formdev:flatlaf:3.4.1")
Expand All @@ -30,9 +30,6 @@ application {
}

tasks {
named<JavaExec>("run") {
standardInput = System.`in`
}
jar {
manifest {
attributes(
Expand Down
5 changes: 1 addition & 4 deletions appLab4/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ version = LocalDate.now().format(DateTimeFormatter.ofPattern("yy.MM.dd"))
val embed: Configuration by configurations.creating

dependencies {
embed("org.jetbrains.kotlin:kotlin-stdlib:1.9.24")
embed("org.jetbrains.kotlin:kotlin-stdlib:2.0.0")
embed("com.formdev:flatlaf:3.4.1")
embed("com.formdev:flatlaf-intellij-themes:3.4.1")
implementation("com.formdev:flatlaf:3.4.1")
Expand All @@ -30,9 +30,6 @@ application {
}

tasks {
named<JavaExec>("run") {
standardInput = System.`in`
}
jar {
manifest {
attributes(
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
plugins {
id("org.jetbrains.kotlin.jvm") version "1.9.24" apply false
id("org.jetbrains.kotlin.jvm") version "2.0.0" apply false
}

0 comments on commit 427b477

Please sign in to comment.