2021-01-20 00:35:40 +01:00
|
|
|
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
|
2021-01-21 23:07:24 +01:00
|
|
|
import java.io.BufferedReader
|
2021-01-20 00:35:40 +01:00
|
|
|
|
2020-12-23 15:22:05 +01:00
|
|
|
plugins {
|
2021-01-02 02:27:20 +01:00
|
|
|
// id("org.jetbrains.kotlin.jvm") version "1.4.21"
|
2020-12-23 15:22:05 +01:00
|
|
|
application
|
2021-01-20 00:35:40 +01:00
|
|
|
id("com.github.johnrengelman.shadow") version "6.1.0"
|
2021-01-22 10:04:03 +01:00
|
|
|
id("org.jmailen.kotlinter") version "3.3.0"
|
2021-02-04 21:10:40 +01:00
|
|
|
id("edu.sc.seis.launch4j") version "2.4.9"
|
2020-12-23 15:22:05 +01:00
|
|
|
}
|
|
|
|
|
2021-03-19 12:25:48 +01:00
|
|
|
val TachideskVersion = "v0.2.6"
|
2021-01-21 23:07:24 +01:00
|
|
|
|
2020-12-23 15:52:43 +01:00
|
|
|
|
2020-12-23 15:22:05 +01:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2020-12-24 17:07:27 +01:00
|
|
|
jcenter()
|
2021-01-01 23:40:37 +01:00
|
|
|
maven {
|
|
|
|
url = uri("https://jitpack.io")
|
|
|
|
}
|
2020-12-23 15:22:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
// implementation(platform("org.jetbrains.kotlin:kotlin-bom"))
|
|
|
|
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
|
|
|
|
|
|
|
|
// Source models and interfaces from Tachiyomi 1.x
|
|
|
|
// using source class from tachiyomi commit 9493577de27c40ce8b2b6122cc447d025e34c477 to not depend on tachiyomi.sourceapi
|
|
|
|
// implementation("tachiyomi.sourceapi:source-api:1.1")
|
|
|
|
|
2021-01-01 23:40:37 +01:00
|
|
|
implementation("com.github.inorichi.injekt:injekt-core:65b0440")
|
2020-12-23 15:22:05 +01:00
|
|
|
|
|
|
|
val okhttp_version = "4.10.0-RC1"
|
2020-12-23 17:22:16 +01:00
|
|
|
implementation("com.squareup.okhttp3:okhttp:$okhttp_version")
|
|
|
|
implementation("com.squareup.okhttp3:logging-interceptor:$okhttp_version")
|
|
|
|
implementation("com.squareup.okhttp3:okhttp-dnsoverhttps:$okhttp_version")
|
|
|
|
implementation("com.squareup.okio:okio:2.9.0")
|
2020-12-23 15:22:05 +01:00
|
|
|
|
2020-12-23 15:52:43 +01:00
|
|
|
|
|
|
|
// retrofit
|
|
|
|
val retrofit_version = "2.9.0"
|
2020-12-23 17:22:16 +01:00
|
|
|
implementation("com.squareup.retrofit2:retrofit:$retrofit_version")
|
|
|
|
implementation("com.jakewharton.retrofit:retrofit2-kotlinx-serialization-converter:0.8.0")
|
2020-12-23 15:52:43 +01:00
|
|
|
implementation("com.squareup.retrofit2:converter-gson:$retrofit_version")
|
2020-12-23 17:22:16 +01:00
|
|
|
implementation("com.squareup.retrofit2:adapter-rxjava:$retrofit_version")
|
2020-12-23 15:52:43 +01:00
|
|
|
|
|
|
|
|
2020-12-23 22:39:54 +01:00
|
|
|
// reactivex
|
2020-12-23 15:22:05 +01:00
|
|
|
implementation("io.reactivex:rxjava:1.3.8")
|
2020-12-23 17:22:16 +01:00
|
|
|
// implementation("io.reactivex:rxandroid:1.2.1")
|
|
|
|
// implementation("com.jakewharton.rxrelay:rxrelay:1.2.0")
|
|
|
|
// implementation("com.github.pwittchen:reactivenetwork:0.13.0")
|
2020-12-23 15:22:05 +01:00
|
|
|
|
2020-12-23 17:22:16 +01:00
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.0")
|
2020-12-23 15:22:05 +01:00
|
|
|
implementation("com.google.code.gson:gson:2.8.6")
|
2020-12-23 17:22:16 +01:00
|
|
|
implementation("com.github.salomonbrys.kotson:kotson:2.5.0")
|
2020-12-23 15:52:43 +01:00
|
|
|
|
|
|
|
implementation("org.jsoup:jsoup:1.13.1")
|
2020-12-23 15:22:05 +01:00
|
|
|
implementation("com.github.salomonbrys.kotson:kotson:2.5.0")
|
|
|
|
implementation("com.squareup.duktape:duktape-android:1.3.0")
|
|
|
|
|
|
|
|
|
2020-12-23 17:22:16 +01:00
|
|
|
val coroutinesVersion = "1.3.9"
|
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion")
|
|
|
|
|
2021-03-16 13:14:50 +01:00
|
|
|
// dex2jar: https://github.com/DexPatcher/dex2jar/releases/tag/v2.1-20190905-lanchon
|
2021-03-25 14:33:32 +01:00
|
|
|
// implementation(fileTree("lib/dex2jar/"))
|
|
|
|
implementation("com.github.DexPatcher:dex2jar:v2.1-20190905-lanchon")
|
|
|
|
|
2020-12-23 21:57:19 +01:00
|
|
|
|
2020-12-23 23:38:03 +01:00
|
|
|
// api
|
|
|
|
implementation("io.javalin:javalin:3.12.0")
|
2020-12-23 23:59:19 +01:00
|
|
|
implementation("org.slf4j:slf4j-simple:1.8.0-beta4")
|
|
|
|
implementation("org.slf4j:slf4j-api:1.8.0-beta4")
|
2020-12-24 00:51:18 +01:00
|
|
|
implementation("com.fasterxml.jackson.core:jackson-databind:2.10.3")
|
2020-12-23 23:38:03 +01:00
|
|
|
|
2020-12-24 17:07:27 +01:00
|
|
|
// Exposed ORM
|
|
|
|
val exposed_version = "0.28.1"
|
2021-02-04 21:10:40 +01:00
|
|
|
implementation("org.jetbrains.exposed:exposed-core:$exposed_version")
|
|
|
|
implementation("org.jetbrains.exposed:exposed-dao:$exposed_version")
|
|
|
|
implementation("org.jetbrains.exposed:exposed-jdbc:$exposed_version")
|
|
|
|
implementation("com.h2database:h2:1.4.199")
|
2021-02-03 22:02:01 +01:00
|
|
|
|
2021-02-04 15:32:46 +01:00
|
|
|
// tray icon
|
|
|
|
implementation("com.dorkbox:SystemTray:3.17")
|
|
|
|
|
|
|
|
|
2021-01-02 02:27:20 +01:00
|
|
|
// AndroidCompat
|
|
|
|
implementation(project(":AndroidCompat"))
|
|
|
|
implementation(project(":AndroidCompat:Config"))
|
|
|
|
|
2020-12-23 17:22:16 +01:00
|
|
|
|
2021-03-14 21:27:33 +01:00
|
|
|
// testImplementation("org.jetbrains.kotlin:kotlin-test")
|
|
|
|
// testImplementation("org.jetbrains.kotlin:kotlin-test-junit")
|
2020-12-23 15:22:05 +01:00
|
|
|
}
|
|
|
|
|
2021-02-04 21:10:40 +01:00
|
|
|
val name = "ir.armor.tachidesk.Main"
|
2020-12-23 15:22:05 +01:00
|
|
|
application {
|
2021-01-20 00:35:40 +01:00
|
|
|
mainClass.set(name)
|
|
|
|
|
|
|
|
// Required by ShadowJar.
|
|
|
|
mainClassName = name
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
resources {
|
|
|
|
srcDir("src/main/resources")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-21 23:07:24 +01:00
|
|
|
val TachideskRevision = Runtime
|
|
|
|
.getRuntime()
|
|
|
|
.exec("git rev-list master --count")
|
|
|
|
.let { process ->
|
|
|
|
process.waitFor()
|
|
|
|
val output = process.inputStream.use {
|
|
|
|
it.bufferedReader().use(BufferedReader::readText)
|
|
|
|
}
|
|
|
|
process.destroy()
|
2021-02-04 21:10:40 +01:00
|
|
|
"r" + output.trim()
|
2021-01-21 23:07:24 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-01-20 00:35:40 +01:00
|
|
|
tasks {
|
|
|
|
jar {
|
|
|
|
manifest {
|
|
|
|
attributes(
|
|
|
|
mapOf(
|
|
|
|
"Main-Class" to "com.example.MainKt", //will make your jar (produced by jar task) runnable
|
|
|
|
"ImplementationTitle" to project.name,
|
|
|
|
"Implementation-Version" to project.version)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
shadowJar {
|
|
|
|
manifest.inheritFrom(jar.get().manifest) //will make your shadowJar (produced by jar task) runnable
|
2021-01-21 23:07:24 +01:00
|
|
|
archiveBaseName.set("Tachidesk")
|
|
|
|
archiveVersion.set(TachideskVersion)
|
|
|
|
archiveClassifier.set(TachideskRevision)
|
2021-01-20 00:35:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 21:10:40 +01:00
|
|
|
launch4j { //used for windows
|
|
|
|
mainClassName = name
|
|
|
|
bundledJrePath = "jre"
|
|
|
|
bundledJre64Bit = true
|
|
|
|
jreMinVersion = "8"
|
|
|
|
outputDir = "Tachidesk-$TachideskVersion-$TachideskRevision-win32"
|
2021-02-21 21:07:11 +01:00
|
|
|
icon = "${projectDir}/src/main/resources/icon/faviconlogo.ico"
|
2021-02-04 21:10:40 +01:00
|
|
|
jar = "${projectDir}/build/Tachidesk-$TachideskVersion-$TachideskRevision.jar"
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.register<Zip>("windowsPackage") {
|
|
|
|
from(fileTree("$buildDir/Tachidesk-$TachideskVersion-$TachideskRevision-win32"))
|
|
|
|
destinationDirectory.set(File("$buildDir"))
|
|
|
|
archiveFileName.set("Tachidesk-$TachideskVersion-$TachideskRevision-win32.zip")
|
|
|
|
dependsOn("windowsPackageWorkaround2")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.register<Delete>("windowsPackageWorkaround2") {
|
|
|
|
delete(
|
|
|
|
"$buildDir/Tachidesk-$TachideskVersion-$TachideskRevision-win32/jre",
|
|
|
|
"$buildDir/Tachidesk-$TachideskVersion-$TachideskRevision-win32/lib",
|
|
|
|
"$buildDir/Tachidesk-$TachideskVersion-$TachideskRevision-win32/server.exe",
|
|
|
|
"$buildDir/Tachidesk-$TachideskVersion-$TachideskRevision-win32/Tachidesk-$TachideskVersion-$TachideskRevision-win32/Tachidesk-$TachideskVersion-$TachideskRevision-win32"
|
|
|
|
)
|
|
|
|
dependsOn("windowsPackageWorkaround")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.register<Copy>("windowsPackageWorkaround") {
|
|
|
|
from("$buildDir/Tachidesk-$TachideskVersion-$TachideskRevision-win32")
|
|
|
|
into("$buildDir/Tachidesk-$TachideskVersion-$TachideskRevision-win32/Tachidesk-$TachideskVersion-$TachideskRevision-win32")
|
|
|
|
dependsOn("deleteUnwantedJreDir")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.register<Delete>("deleteUnwantedJreDir") {
|
|
|
|
delete(
|
|
|
|
"$buildDir/Tachidesk-$TachideskVersion-$TachideskRevision-win32/jdk8u282-b08-jre"
|
|
|
|
)
|
|
|
|
dependsOn("addJreToDistributable")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.register<Copy>("addJreToDistributable") {
|
|
|
|
from(zipTree("$buildDir/OpenJDK8U-jre_x86-32_windows_hotspot_8u282b08.zip"))
|
|
|
|
into("$buildDir/Tachidesk-$TachideskVersion-$TachideskRevision-win32")
|
|
|
|
eachFile {
|
|
|
|
path = path.replace(".*-jre".toRegex(),"jre")
|
|
|
|
}
|
|
|
|
dependsOn("downloadJre")
|
|
|
|
dependsOn("createExe")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.register<de.undercouch.gradle.tasks.download.Download>("downloadJre") {
|
|
|
|
src("https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u282-b08/OpenJDK8U-jre_x86-32_windows_hotspot_8u282b08.zip")
|
|
|
|
dest(buildDir)
|
|
|
|
overwrite(false)
|
|
|
|
onlyIfModified(true)
|
|
|
|
}
|
|
|
|
|
2021-01-20 00:35:40 +01:00
|
|
|
tasks.withType<ShadowJar> {
|
|
|
|
destinationDir = File("$rootDir/server/build")
|
2021-01-22 10:04:03 +01:00
|
|
|
dependsOn("lintKotlin")
|
2020-12-23 15:22:05 +01:00
|
|
|
}
|
2021-01-20 00:35:40 +01:00
|
|
|
|
|
|
|
tasks.named("processResources") {
|
|
|
|
dependsOn(":webUI:copyBuild")
|
|
|
|
}
|
|
|
|
|
2021-01-22 10:04:03 +01:00
|
|
|
tasks.named("run") {
|
|
|
|
dependsOn("formatKotlin", "lintKotlin")
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|