2021-09-24 14:25:17 +02:00
|
|
|
import org.jetbrains.compose.compose
|
|
|
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
2022-03-28 00:32:01 +02:00
|
|
|
import org.gradle.jvm.tasks.Jar
|
2021-09-24 14:25:17 +02:00
|
|
|
|
|
|
|
plugins {
|
2022-04-04 18:55:21 +02:00
|
|
|
// Kotlin version must match compose version
|
2022-01-05 03:17:51 +01:00
|
|
|
kotlin("jvm") version "1.6.10"
|
|
|
|
kotlin("kapt") version "1.6.10"
|
|
|
|
kotlin("plugin.serialization") version "1.6.10"
|
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-05-03 19:49:53 +02:00
|
|
|
val projectVersion = "0.2.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)
|
2022-05-03 19:48:47 +02:00
|
|
|
implementation("org.eclipse.jgit:org.eclipse.jgit:6.1.0.202203080745-r")
|
2022-03-28 00:32:01 +02:00
|
|
|
implementation("org.apache.sshd:sshd-core:2.8.0")
|
|
|
|
implementation("com.google.dagger:dagger:2.41")
|
2022-01-05 03:17:51 +01:00
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.2")
|
2022-03-28 00:32:01 +02:00
|
|
|
kapt("com.google.dagger:dagger-compiler:2.41")
|
2022-03-30 01:04:20 +02:00
|
|
|
testImplementation(platform("org.junit:junit-bom:5.8.2"))
|
2022-04-04 18:32:06 +02:00
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter:5.8.2")
|
2022-03-30 01:04:20 +02:00
|
|
|
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")
|
2022-03-30 01:04:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
testLogging {
|
|
|
|
events("passed", "skipped", "failed")
|
|
|
|
}
|
2021-09-24 14:25:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType<KotlinCompile>() {
|
2022-03-28 00:32:01 +02:00
|
|
|
kotlinOptions.jvmTarget = "17"
|
2022-01-05 03:17:51 +01:00
|
|
|
kotlinOptions.allWarningsAsErrors = true
|
2021-09-24 14:25:17 +02:00
|
|
|
kotlinOptions.freeCompilerArgs += "-Xopt-in=kotlin.RequiresOptIn"
|
|
|
|
}
|
|
|
|
|
2021-10-06 19:05:07 +02:00
|
|
|
|
2021-09-24 14:25:17 +02:00
|
|
|
compose.desktop {
|
|
|
|
application {
|
2021-11-19 03:09:09 +01:00
|
|
|
mainClass = "MainKt"
|
2022-03-28 00:32:01 +02:00
|
|
|
|
2021-09-24 14:25:17 +02:00
|
|
|
nativeDistributions {
|
2021-12-14 13:42:31 +01:00
|
|
|
includeAllModules = true
|
2022-04-04 05:15:42 +02:00
|
|
|
packageName = projectName
|
|
|
|
version = projectVersion
|
|
|
|
description = "Multiplatform Git client"
|
|
|
|
|
|
|
|
windows {
|
|
|
|
iconFile.set(project.file("icons/icon.ico"))
|
|
|
|
}
|
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 {
|
2022-03-28 00:32:01 +02:00
|
|
|
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)
|
2022-04-04 05:15:42 +02:00
|
|
|
}
|