Skip to content

Commit

Permalink
sp.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hummel009 committed Feb 8, 2024
1 parent 845fef7 commit 3080aba
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions appCourse/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ java {
}

application {
mainClass = "com.github.hummel.course.MainKt"
mainClass = "com.github.hummel.sp.course.MainKt"
}

javafx {
Expand All @@ -39,7 +39,7 @@ tasks {
manifest {
attributes(
mapOf(
"Main-Class" to "com.github.hummel.course.MainKt"
"Main-Class" to "com.github.hummel.sp.course.MainKt"
)
)
}
Expand Down
2 changes: 1 addition & 1 deletion appCourseMP/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ kotlin {
mingwX64 {
binaries {
executable {
entryPoint("com.github.hummel.coursemp.main")
entryPoint("com.github.hummel.sp.coursemp.main")
linkerOpts("-lwinmm")
baseName = "${project.name}-${project.version}"
}
Expand Down
2 changes: 1 addition & 1 deletion appLab1/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ kotlin {
mingwX64 {
binaries {
executable {
entryPoint("com.github.hummel.lab1.main")
entryPoint("com.github.hummel.sp.lab1.main")
linkerOpts("-lwinmm")
baseName = "${project.name}-${project.version}"
}
Expand Down
2 changes: 1 addition & 1 deletion appLab2/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ kotlin {
mingwX64 {
binaries {
executable {
entryPoint("com.github.hummel.lab2.main")
entryPoint("com.github.hummel.sp.lab2.main")
linkerOpts("-lwinmm")
baseName = "${project.name}-${project.version}"
}
Expand Down
2 changes: 1 addition & 1 deletion appLab4/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ kotlin {
mingwX64 {
binaries {
executable {
entryPoint("com.github.hummel.lab4.main")
entryPoint("com.github.hummel.sp.lab4.main")
linkerOpts("-lwinmm")
baseName = "${project.name}-${project.version}"
}
Expand Down
4 changes: 2 additions & 2 deletions appLab5/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.lab5.MainKt"
mainClass = "com.github.hummel.sp.lab5.MainKt"
}

tasks {
Expand All @@ -33,7 +33,7 @@ tasks {
manifest {
attributes(
mapOf(
"Main-Class" to "com.github.hummel.lab5.MainKt"
"Main-Class" to "com.github.hummel.sp.lab5.MainKt"
)
)
}
Expand Down

0 comments on commit 3080aba

Please sign in to comment.