Gitnuro/build.gradle.kts

52 lines
1.5 KiB
Text
Raw Normal View History

2021-09-24 14:25:17 +02:00
import org.jetbrains.compose.compose
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
// __KOTLIN_COMPOSE_VERSION__
2021-10-27 02:38:31 +02:00
kotlin("jvm") version "1.5.31"
kotlin("kapt") version "1.5.31"
kotlin("plugin.serialization") version "1.5.31"
2021-09-24 14:25:17 +02:00
// __LATEST_COMPOSE_RELEASE_VERSION__
id("org.jetbrains.compose") version "1.0.0-beta6-dev464"
2021-09-24 14:25:17 +02:00
}
group = "aeab13.github"
2021-09-24 14:25:17 +02:00
version = "1.0"
repositories {
mavenCentral()
google()
maven { url = uri("https://maven.pkg.jetbrains.space/public/p/compose/dev") }
}
2021-09-24 14:25:17 +02:00
dependencies {
implementation(compose.desktop.currentOs)
implementation("org.eclipse.jgit:org.eclipse.jgit:5.13.0.202109080827-r")
implementation("org.apache.sshd:sshd-core:2.7.0")
2021-10-06 20:45:33 +02:00
implementation("com.google.dagger:dagger:2.39.1")
2021-10-27 02:38:31 +02:00
implementation("org.jetbrains.kotlin:kotlin-reflect:1.5.31")
2021-10-15 02:34:26 +02:00
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.0")
2021-10-06 20:45:33 +02:00
kapt("com.google.dagger:dagger-compiler:2.39.1")
2021-09-24 14:25:17 +02:00
}
tasks.withType<KotlinCompile>() {
kotlinOptions.jvmTarget = "11"
kotlinOptions.allWarningsAsErrors = true
kotlinOptions.freeCompilerArgs += "-Xopt-in=kotlin.RequiresOptIn"
}
2021-09-24 14:25:17 +02:00
compose.desktop {
application {
2021-11-19 03:09:09 +01:00
mainClass = "MainKt"
2021-09-24 14:25:17 +02:00
nativeDistributions {
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb, TargetFormat.AppImage)
packageName = "gitnuro"
2021-09-24 14:32:22 +02:00
packageVersion = "1.0.0"
2021-09-24 14:25:17 +02:00
}
}
}