Рассчет ежедневных заданий, еженедельных наград и заданий недели

This commit is contained in:
2025-05-19 03:06:07 +03:00
commit e2d91a5d0d
18 changed files with 738 additions and 0 deletions

37
build.gradle.kts Normal file
View File

@ -0,0 +1,37 @@
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
plugins {
kotlin("jvm")
id("org.jetbrains.compose")
id("org.jetbrains.kotlin.plugin.compose")
}
group = "ru.csasq"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
google()
}
dependencies {
// Note, if you develop a library, you should use compose.desktop.common.
// compose.desktop.currentOs should be used in launcher-sourceSet
// (in a separate module for demo project and in testMain).
// With compose.desktop.common you will also lose @Preview functionality
implementation(compose.desktop.currentOs)
implementation(compose.material3)
}
compose.desktop {
application {
mainClass = "MainKt"
nativeDistributions {
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
packageName = "naraka-bladepoint-battle-pass"
packageVersion = "1.0.0"
}
}
}