Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
Hummel009 committed Feb 7, 2024
1 parent b5370e7 commit e4edd4d
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions appLab1/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
id("application")
}

group = "hummel"
group = "com.github.hummel"
version = LocalDate.now().format(DateTimeFormatter.ofPattern("yy.MM.dd"))

val embed: Configuration by configurations.creating
Expand All @@ -22,7 +22,7 @@ java {
}

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

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

import hummel.Room.RoomType
import hummel.Room.WindowType
Expand Down
6 changes: 3 additions & 3 deletions appLab2/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
id("application")
}

group = "hummel"
group = "com.github.hummel"
version = LocalDate.now().format(DateTimeFormatter.ofPattern("yy.MM.dd"))

val embed: Configuration by configurations.creating
Expand All @@ -22,7 +22,7 @@ java {
}

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

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

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

Expand Down
6 changes: 3 additions & 3 deletions appLab3/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
id("application")
}

group = "hummel"
group = "com.github.hummel"
version = LocalDate.now().format(DateTimeFormatter.ofPattern("yy.MM.dd"))

val embed: Configuration by configurations.creating
Expand All @@ -22,7 +22,7 @@ java {
}

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

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

private const val rr: String = "R) --> "
private const val l: String = "L) "
Expand Down
6 changes: 3 additions & 3 deletions appLab4/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
id("application")
}

group = "hummel"
group = "com.github.hummel"
version = LocalDate.now().format(DateTimeFormatter.ofPattern("yy.MM.dd"))

val embed: Configuration by configurations.creating
Expand All @@ -22,7 +22,7 @@ java {
}

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

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

import java.util.*
import kotlin.math.max
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit e4edd4d

Please sign in to comment.