Gitnuro/build.gradle.kts

89 lines
2.6 KiB
Text
Raw Normal View History

2021-09-24 14:25:17 +02:00
import org.jetbrains.compose.compose
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import org.gradle.jvm.tasks.Jar
2021-09-24 14:25:17 +02:00
plugins {
// __KOTLIN_COMPOSE_VERSION__
kotlin("jvm") version "1.6.10"
kotlin("kapt") version "1.6.10"
kotlin("plugin.serialization") version "1.6.10"
2021-09-24 14:25:17 +02:00
// __LATEST_COMPOSE_RELEASE_VERSION__
2022-03-26 05:05:23 +01:00
id("org.jetbrains.compose") version "1.1.1"
2021-09-24 14:25:17 +02:00
}
2022-04-04 02:48:40 +02:00
// Remember to update Constants.APP_VERSION when changing this version
2022-03-27 06:24:29 +02:00
val projectVersion = "0.1.0"
2022-04-02 04:17:40 +02:00
val projectName = "Gitnuro"
2022-03-27 06:24:29 +02:00
group = "com.jetpackduba"
version = projectVersion
2021-09-24 14:25:17 +02:00
repositories {
mavenCentral()
google()
maven { url = uri("https://maven.pkg.jetbrains.space/public/p/compose/dev") }
}
dependencies {
implementation(compose.desktop.currentOs)
2021-11-22 03:38:16 +01:00
@OptIn(org.jetbrains.compose.ExperimentalComposeLibrary::class)
implementation(compose.desktop.components.splitPane)
implementation("org.eclipse.jgit:org.eclipse.jgit:6.0.0.202111291000-r")
implementation("org.apache.sshd:sshd-core:2.8.0")
implementation("com.google.dagger:dagger:2.41")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.2")
kapt("com.google.dagger:dagger-compiler:2.41")
testImplementation(platform("org.junit:junit-bom:5.8.2"))
testImplementation("org.junit.jupiter:junit-jupiter")
testImplementation("io.mockk:mockk:1.12.3")
2022-04-04 02:48:40 +02:00
implementation("com.squareup.retrofit2:retrofit:2.9.0")
implementation("com.squareup.retrofit2:converter-scalars:2.9.0")
}
tasks.test {
useJUnitPlatform()
testLogging {
events("passed", "skipped", "failed")
}
2021-09-24 14:25:17 +02:00
}
tasks.withType<KotlinCompile>() {
kotlinOptions.jvmTarget = "17"
kotlinOptions.allWarningsAsErrors = true
2021-09-24 14:25:17 +02:00
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 {
includeAllModules = true
packageName = name
packageVersion = projectVersion
2021-09-24 14:25:17 +02:00
}
}
2022-03-27 06:27:31 +02:00
}
task("fatJar", type = Jar::class) {
2022-04-02 04:17:40 +02:00
archiveBaseName.set(projectName)
2022-03-27 06:27:31 +02:00
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
manifest {
attributes["Implementation-Title"] = name
2022-03-27 06:27:31 +02:00
attributes["Implementation-Version"] = projectVersion
attributes["Main-Class"] = "MainKt"
}
from(configurations.runtimeClasspath.get().map { if (it.isDirectory) it else zipTree(it) }) {
exclude(
"META-INF/MANIFEST.MF",
"META-INF/*.SF",
"META-INF/*.DSA",
"META-INF/*.RSA",
)
}
with(tasks.jar.get() as CopySpec)
2021-09-24 14:25:17 +02:00
}