tachiyomi-extensions-inspector/server/build.gradle.kts

236 lines
7.8 KiB
Plaintext
Raw Normal View History

2021-01-20 00:35:40 +01:00
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import org.jmailen.gradle.kotlinter.tasks.FormatTask
import org.jmailen.gradle.kotlinter.tasks.LintTask
2021-01-21 23:07:24 +01:00
import java.io.BufferedReader
2021-01-20 00:35:40 +01:00
plugins {
application
id("com.github.johnrengelman.shadow") version "7.0.0"
id("org.jmailen.kotlinter") version "3.4.3"
id("edu.sc.seis.launch4j") version "2.5.0"
2021-04-30 03:17:23 +02:00
id("de.fuerstenau.buildconfig") version "1.1.8"
}
2021-04-10 06:51:42 +02:00
val TachideskVersion = "v0.3.0"
2021-01-21 23:07:24 +01:00
repositories {
mavenCentral()
2021-01-01 23:40:37 +01:00
maven {
url = uri("https://jitpack.io")
}
}
dependencies {
// implementation(platform("org.jetbrains.kotlin:kotlin-bom"))
implementation(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")
2021-04-02 00:44:40 +02:00
val okhttpVersion = "4.10.0-RC1"
implementation("com.squareup.okhttp3:okhttp:$okhttpVersion")
implementation("com.squareup.okhttp3:logging-interceptor:$okhttpVersion")
implementation("com.squareup.okhttp3:okhttp-dnsoverhttps:$okhttpVersion")
implementation("com.squareup.okio:okio:2.10.0")
2020-12-23 15:52:43 +01:00
// Retrofit
2021-04-02 00:44:40 +02:00
val retrofitVersion = "2.9.0"
implementation("com.squareup.retrofit2:retrofit:$retrofitVersion")
2020-12-23 17:22:16 +01:00
implementation("com.jakewharton.retrofit:retrofit2-kotlinx-serialization-converter:0.8.0")
2021-04-02 00:44:40 +02:00
implementation("com.squareup.retrofit2:converter-gson:$retrofitVersion")
implementation("com.squareup.retrofit2:adapter-rxjava:$retrofitVersion")
2020-12-23 15:52:43 +01:00
// Reactivex
implementation("io.reactivex:rxjava:1.3.8")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.2.0")
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")
implementation("com.github.salomonbrys.kotson:kotson:2.5.0")
2020-12-23 21:57:19 +01:00
2020-12-23 23:38:03 +01:00
// api
implementation("io.javalin:javalin:3.13.6")
implementation("com.fasterxml.jackson.core:jackson-databind:2.12.3")
2020-12-23 23:38:03 +01:00
2020-12-24 17:07:27 +01:00
// Exposed ORM
val exposedVersion = "0.31.1"
2021-04-02 00:44:40 +02:00
implementation("org.jetbrains.exposed:exposed-core:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-dao:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-jdbc:$exposedVersion")
implementation("com.h2database:h2:1.4.200")
2021-02-04 15:32:46 +01:00
// tray icon
implementation("com.dorkbox:SystemTray:4.1")
implementation("com.dorkbox:Utilities:1.9")
2021-02-04 15:32:46 +01:00
// AndroidCompat
implementation(project(":AndroidCompat"))
implementation(project(":AndroidCompat:Config"))
// uncomment to test extensions directly
// implementation(fileTree("lib/"))
2021-04-03 22:42:13 +02:00
// Testing
testImplementation(kotlin("test-junit5"))
}
val MainClass = "ir.armor.tachidesk.Main"
application {
mainClass.set(MainClass)
2021-01-20 00:35:40 +01:00
}
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
}
buildConfig {
appName = rootProject.name
clsName = "BuildConfig"
packageName = "ir.armor.tachidesk.server"
version = TachideskVersion
buildConfigField("String", "name", rootProject.name)
buildConfigField("String", "version", TachideskVersion)
buildConfigField("String", "revision", TachideskRevision)
buildConfigField("boolean", "debug", project.hasProperty("debugApp").toString())
}
launch4j { //used for windows
mainClassName = MainClass
bundledJrePath = "jre"
bundledJre64Bit = true
jreMinVersion = "8"
outputDir = "${rootProject.name}-$TachideskVersion-$TachideskRevision-win32"
icon = "${projectDir}/src/main/resources/icon/faviconlogo.ico"
jar = "${projectDir}/build/${rootProject.name}-$TachideskVersion-$TachideskRevision.jar"
}
2021-01-20 00:35:40 +01:00
tasks {
jar {
manifest {
attributes(
mapOf(
"Main-Class" to MainClass, //will make your jar (produced by jar task) runnable
"Implementation-Title" to rootProject.name,
"Implementation-Version" to "$TachideskVersion-$TachideskRevision")
2021-01-20 00:35:40 +01:00
)
}
}
shadowJar {
manifest.inheritFrom(jar.get().manifest) //will make your shadowJar (produced by jar task) runnable
archiveBaseName.set(rootProject.name)
2021-01-21 23:07:24 +01:00
archiveVersion.set(TachideskVersion)
archiveClassifier.set(TachideskRevision)
2021-01-20 00:35:40 +01:00
}
withType<KotlinCompile> {
2021-04-01 22:07:35 +02:00
kotlinOptions {
freeCompilerArgs = listOf(
"-Xopt-in=kotlin.RequiresOptIn",
"-Xopt-in=kotlinx.coroutines.ExperimentalCoroutinesApi",
"-Xopt-in=kotlinx.coroutines.InternalCoroutinesApi"
)
}
}
2021-04-03 22:42:13 +02:00
test {
useJUnit()
}
2021-02-04 21:10:40 +01:00
register<Zip>("windowsPackage") {
from(fileTree("$buildDir/${rootProject.name}-$TachideskVersion-$TachideskRevision-win32"))
destinationDirectory.set(File("$buildDir"))
archiveFileName.set("${rootProject.name}-$TachideskVersion-$TachideskRevision-win32.zip")
dependsOn("windowsPackageWorkaround2")
}
2021-02-04 21:10:40 +01:00
register<Delete>("windowsPackageWorkaround2") {
delete(
"$buildDir/${rootProject.name}-$TachideskVersion-$TachideskRevision-win32/jre",
"$buildDir/${rootProject.name}-$TachideskVersion-$TachideskRevision-win32/lib",
"$buildDir/${rootProject.name}-$TachideskVersion-$TachideskRevision-win32/server.exe",
"$buildDir/${rootProject.name}-$TachideskVersion-$TachideskRevision-win32/Tachidesk-$TachideskVersion-$TachideskRevision-win32/Tachidesk-$TachideskVersion-$TachideskRevision-win32"
)
dependsOn("windowsPackageWorkaround")
}
2021-02-04 21:10:40 +01:00
register<Copy>("windowsPackageWorkaround") {
from("$buildDir/${rootProject.name}-$TachideskVersion-$TachideskRevision-win32")
into("$buildDir/${rootProject.name}-$TachideskVersion-$TachideskRevision-win32/${rootProject.name}-$TachideskVersion-$TachideskRevision-win32")
dependsOn("deleteUnwantedJreDir")
}
2021-02-04 21:10:40 +01:00
register<Delete>("deleteUnwantedJreDir") {
delete(
"$buildDir/${rootProject.name}-$TachideskVersion-$TachideskRevision-win32/jdk8u282-b08-jre"
)
dependsOn("addJreToDistributable")
2021-02-04 21:10:40 +01:00
}
register<Copy>("addJreToDistributable") {
from(zipTree("$buildDir/OpenJDK8U-jre_x86-32_windows_hotspot_8u282b08.zip"))
into("$buildDir/${rootProject.name}-$TachideskVersion-$TachideskRevision-win32")
eachFile {
path = path.replace(".*-jre".toRegex(),"jre")
}
dependsOn("downloadJre")
dependsOn("createExe")
}
2021-02-04 21:10:40 +01:00
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
withType<ShadowJar> {
destinationDirectory.set(File("$rootDir/server/build"))
dependsOn("formatKotlin", "lintKotlin")
}
2021-01-22 10:04:03 +01:00
named("run") {
dependsOn("formatKotlin", "lintKotlin")
}
named<Copy>("processResources") {
duplicatesStrategy = DuplicatesStrategy.WARN
mustRunAfter(":webUI:copyBuild")
}
2021-01-22 10:04:03 +01:00
withType<LintTask> {
source(files("src"))
}
2021-01-22 10:04:03 +01:00
withType<FormatTask> {
source(files("src"))
}
2021-04-30 03:17:23 +02:00
}