2022-08-06 21:03:45 +02:00
|
|
|
import org.gradle.jvm.tasks.Jar
|
2021-09-24 14:25:17 +02:00
|
|
|
import org.jetbrains.compose.compose
|
|
|
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
|
2023-01-29 14:35:13 +01:00
|
|
|
val javaLanguageVersion = JavaLanguageVersion.of(17)
|
|
|
|
|
2021-09-24 14:25:17 +02:00
|
|
|
plugins {
|
2022-04-04 18:55:21 +02:00
|
|
|
// Kotlin version must match compose version
|
2022-09-30 14:48:23 +02:00
|
|
|
kotlin("jvm") version "1.7.10"
|
|
|
|
kotlin("kapt") version "1.7.10"
|
|
|
|
kotlin("plugin.serialization") version "1.7.10"
|
2023-07-06 15:30:00 +02:00
|
|
|
id("org.jetbrains.compose") version "1.4.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
|
2023-05-14 14:22:00 +02:00
|
|
|
val projectVersion = "1.2.1"
|
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 {
|
2023-04-08 22:33:05 +02:00
|
|
|
val jgit = "6.5.0.202303070854-r"
|
2023-01-28 17:39:35 +01:00
|
|
|
|
2021-09-24 14:25:17 +02:00
|
|
|
implementation(compose.desktop.currentOs)
|
2023-05-03 15:13:20 +02:00
|
|
|
when (currentOs()) {
|
|
|
|
OS.LINUX -> implementation(compose.desktop.linux_arm64) // Include arm for linux builds
|
|
|
|
else -> {}
|
|
|
|
}
|
|
|
|
|
2021-11-22 03:38:16 +01:00
|
|
|
@OptIn(org.jetbrains.compose.ExperimentalComposeLibrary::class)
|
|
|
|
implementation(compose.desktop.components.splitPane)
|
2022-09-28 15:07:42 +02:00
|
|
|
implementation(compose("org.jetbrains.compose.ui:ui-util"))
|
2022-10-02 23:27:52 +02:00
|
|
|
implementation(compose("org.jetbrains.compose.components:components-animatedimage"))
|
2023-01-28 17:39:35 +01:00
|
|
|
implementation("org.eclipse.jgit:org.eclipse.jgit:$jgit")
|
|
|
|
implementation("org.eclipse.jgit:org.eclipse.jgit.gpg.bc:$jgit")
|
2023-03-18 17:33:51 +01:00
|
|
|
implementation("com.google.dagger:dagger:2.45")
|
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.0")
|
|
|
|
kapt("com.google.dagger:dagger-compiler:2.45")
|
2022-08-06 20:37:07 +02:00
|
|
|
testImplementation(platform("org.junit:junit-bom:5.9.0"))
|
2023-03-18 17:33:51 +01:00
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter:5.9.2")
|
|
|
|
testImplementation("io.mockk:mockk:1.13.4")
|
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-05-16 19:15:29 +02:00
|
|
|
implementation("net.i2p.crypto:eddsa:0.3.0")
|
2023-01-29 23:01:49 +01:00
|
|
|
implementation("net.java.dev.jna:jna:5.13.0")
|
2023-04-12 22:16:50 +02:00
|
|
|
implementation("io.github.oshai:kotlin-logging-jvm:4.0.0-beta-27")
|
|
|
|
implementation("org.slf4j:slf4j-api:2.0.7")
|
|
|
|
implementation("org.slf4j:slf4j-reload4j:2.0.7")
|
|
|
|
|
2022-03-30 01:04:20 +02:00
|
|
|
}
|
|
|
|
|
2023-05-03 15:13:20 +02:00
|
|
|
fun currentOs(): OS {
|
|
|
|
val os = System.getProperty("os.name")
|
|
|
|
return when {
|
|
|
|
os.equals("Mac OS X", ignoreCase = true) -> OS.MAC
|
|
|
|
os.startsWith("Win", ignoreCase = true) -> OS.WINDOWS
|
|
|
|
os.startsWith("Linux", ignoreCase = true) -> OS.LINUX
|
|
|
|
else -> error("Unknown OS name: $os")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
enum class OS {
|
|
|
|
LINUX,
|
|
|
|
WINDOWS,
|
|
|
|
MAC
|
|
|
|
}
|
|
|
|
|
2022-03-30 01:04:20 +02:00
|
|
|
tasks.test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
testLogging {
|
|
|
|
events("passed", "skipped", "failed")
|
|
|
|
}
|
2021-09-24 14:25:17 +02:00
|
|
|
}
|
|
|
|
|
2023-01-29 11:53:19 +01:00
|
|
|
kotlin {
|
|
|
|
jvmToolchain {
|
2023-01-29 14:35:13 +01:00
|
|
|
languageVersion.set(javaLanguageVersion)
|
2023-01-29 11:53:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-06 21:03:45 +02:00
|
|
|
tasks.withType<KotlinCompile> {
|
2023-07-06 15:30:00 +02:00
|
|
|
kotlinOptions.allWarningsAsErrors = false
|
2022-05-09 22:02:24 +02:00
|
|
|
kotlinOptions.freeCompilerArgs += "-opt-in=kotlin.RequiresOptIn"
|
2021-09-24 14:25:17 +02:00
|
|
|
}
|
|
|
|
|
2023-01-29 14:30:04 +01:00
|
|
|
tasks.withType<JavaExec> {
|
|
|
|
javaLauncher.set(javaToolchains.launcherFor {
|
2023-01-29 14:35:13 +01:00
|
|
|
languageVersion.set(javaLanguageVersion)
|
2023-01-29 14:30:04 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-10-06 19:05:07 +02:00
|
|
|
|
2021-09-24 14:25:17 +02:00
|
|
|
compose.desktop {
|
|
|
|
application {
|
2022-09-28 15:07:42 +02:00
|
|
|
mainClass = "com.jetpackduba.gitnuro.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"
|
2022-08-06 21:03:45 +02:00
|
|
|
|
2022-04-04 05:15:42 +02:00
|
|
|
windows {
|
|
|
|
iconFile.set(project.file("icons/icon.ico"))
|
|
|
|
}
|
2022-05-31 15:26:15 +02:00
|
|
|
|
|
|
|
macOS {
|
|
|
|
jvmArgs(
|
|
|
|
"-Dapple.awt.application.appearance=system"
|
|
|
|
)
|
2022-05-31 17:12:33 +02:00
|
|
|
iconFile.set(project.file("icons/icon.icns"))
|
2022-05-31 15:26:15 +02:00
|
|
|
}
|
2021-09-24 14:25:17 +02:00
|
|
|
}
|
|
|
|
}
|
2022-03-27 06:27:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-08-07 19:11:30 +02:00
|
|
|
task("fatJarLinux", type = Jar::class) {
|
2022-09-30 14:48:23 +02:00
|
|
|
|
2022-08-07 19:11:30 +02:00
|
|
|
archiveBaseName.set("$projectName-linux")
|
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
|
2022-09-28 01:48:34 +02:00
|
|
|
attributes["Main-Class"] = "com.jetpackduba.gitnuro.MainKt"
|
2022-03-27 06:27:31 +02:00
|
|
|
}
|
|
|
|
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-09-30 17:28:42 +02:00
|
|
|
}
|