Skip to content

Commit

Permalink
lab1.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hummel009 committed Feb 7, 2024
1 parent e4edd4d commit 9f0808d
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions appLab1/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ java {
}

application {
mainClass = "com.github.hummel.ads.MainKt"
mainClass = "com.github.hummel.ads.lab1.MainKt"
}

tasks {
Expand All @@ -33,7 +33,7 @@ tasks {
manifest {
attributes(
mapOf(
"Main-Class" to "com.github.hummel.ads.MainKt"
"Main-Class" to "com.github.hummel.ads.lab1.MainKt"
)
)
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.hummel.ads
package com.github.hummel.ads.lab1

import hummel.Room.RoomType
import hummel.Room.WindowType
Expand Down
4 changes: 2 additions & 2 deletions appLab2/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ java {
}

application {
mainClass = "com.github.hummel.ads.MainKt"
mainClass = "com.github.hummel.ads.lab2.MainKt"
}

tasks {
Expand All @@ -33,7 +33,7 @@ tasks {
manifest {
attributes(
mapOf(
"Main-Class" to "com.github.hummel.ads.MainKt"
"Main-Class" to "com.github.hummel.ads.lab2.MainKt"
)
)
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.hummel.ads
package com.github.hummel.ads.lab2

private var list: MutableList<Item> = ArrayList()

Expand Down
4 changes: 2 additions & 2 deletions appLab3/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ java {
}

application {
mainClass = "com.github.hummel.ads.MainKt"
mainClass = "com.github.hummel.ads.lab3.MainKt"
}

tasks {
Expand All @@ -33,7 +33,7 @@ tasks {
manifest {
attributes(
mapOf(
"Main-Class" to "com.github.hummel.ads.MainKt"
"Main-Class" to "com.github.hummel.ads.lab3.MainKt"
)
)
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.hummel.ads
package com.github.hummel.ads.lab3

private const val rr: String = "R) --> "
private const val l: String = "L) "
Expand Down
4 changes: 2 additions & 2 deletions appLab4/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ java {
}

application {
mainClass = "com.github.hummel.ads.MainKt"
mainClass = "com.github.hummel.ads.lab4.MainKt"
}

tasks {
Expand All @@ -33,7 +33,7 @@ tasks {
manifest {
attributes(
mapOf(
"Main-Class" to "com.github.hummel.ads.MainKt"
"Main-Class" to "com.github.hummel.ads.lab4.MainKt"
)
)
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.hummel.ads
package com.github.hummel.ads.lab4

import java.util.*
import kotlin.math.max
Expand Down

0 comments on commit 9f0808d

Please sign in to comment.