mirror of
https://gitlab.com/mangadex-pub/mangadex_at_home.git
synced 2024-01-19 02:48:37 +00:00
155 lines
5.2 KiB
Groovy
155 lines
5.2 KiB
Groovy
plugins {
|
|
id "jacoco"
|
|
id "java"
|
|
id "org.jetbrains.kotlin.jvm" version "1.4.20"
|
|
id "org.jetbrains.kotlin.kapt" version "1.4.0"
|
|
id "application"
|
|
id "com.github.johnrengelman.shadow" version "5.2.0"
|
|
id "com.diffplug.spotless" version "5.8.2"
|
|
id "dev.afanasev.sekret" version "0.0.7"
|
|
}
|
|
|
|
group = "com.mangadex"
|
|
version = "git describe --tags --dirty".execute().text.trim()
|
|
mainClassName = "mdnet.MainKt"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
|
|
configurations {
|
|
runtime.exclude group: "com.sun.mail", module: "javax.mail"
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly group: "dev.afanasev", name: "sekret-annotation", version: "0.0.7"
|
|
|
|
implementation group: "commons-io", name: "commons-io", version: "2.7"
|
|
implementation group: "org.apache.commons", name: "commons-compress", version: "1.20"
|
|
implementation group: "ch.qos.logback", name: "logback-classic", version: "1.3.0-alpha4"
|
|
|
|
implementation group: "io.micrometer", name: "micrometer-registry-prometheus", version: "1.6.2"
|
|
implementation group: "com.maxmind.geoip2", name: "geoip2", version: "2.15.0"
|
|
|
|
implementation group: "org.http4k", name: "http4k-core", version: "$http_4k_version"
|
|
implementation group: "org.http4k", name: "http4k-resilience4j", version: "$http_4k_version"
|
|
implementation group: "io.github.resilience4j", name: "resilience4j-micrometer", version: "1.6.1"
|
|
implementation group: "org.http4k", name: "http4k-format-jackson", version: "$http_4k_version"
|
|
implementation group: "com.fasterxml.jackson.dataformat", name: "jackson-dataformat-yaml", version: "2.12.1"
|
|
implementation group: "com.fasterxml.jackson.datatype", name: "jackson-datatype-jsr310", version: "2.12.1"
|
|
implementation group: "org.http4k", name: "http4k-client-apache", version: "$http_4k_version"
|
|
implementation group: "org.http4k", name: "http4k-metrics-micrometer", version: "$http_4k_version"
|
|
implementation group: "org.http4k", name: "http4k-server-netty", version: "$http_4k_version"
|
|
implementation group: "io.netty", name: "netty-transport-native-epoll", version: "4.1.58.Final", classifier: "linux-x86_64"
|
|
implementation group: "io.netty.incubator", name: "netty-incubator-transport-native-io_uring", version: "0.0.3.Final", classifier: "linux-x86_64"
|
|
testImplementation group: "org.http4k", name: "http4k-testing-kotest", version: "$http_4k_version"
|
|
runtimeOnly group: "io.netty", name: "netty-tcnative-boringssl-static", version: "2.0.34.Final"
|
|
|
|
implementation group: 'com.zaxxer', name: 'HikariCP', version: '4.0.1'
|
|
implementation group: "com.h2database", name: "h2", version: "1.4.200"
|
|
implementation "org.ktorm:ktorm-core:$ktorm_version"
|
|
implementation "org.ktorm:ktorm-jackson:$ktorm_version"
|
|
|
|
implementation "info.picocli:picocli:4.5.0"
|
|
kapt "info.picocli:picocli-codegen:4.5.0"
|
|
|
|
testImplementation "io.kotest:kotest-runner-junit5:$kotest_version"
|
|
testImplementation "io.kotest:kotest-assertions-core:$kotest_version"
|
|
testImplementation "io.mockk:mockk:1.10.4"
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
task testDev(type: Test) {
|
|
group = "verification"
|
|
useJUnitPlatform()
|
|
filter {
|
|
excludeTestsMatching '*SlowTest'
|
|
}
|
|
}
|
|
|
|
|
|
kapt {
|
|
arguments {
|
|
arg("project", "${project.group}/${project.name}")
|
|
}
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
}
|
|
|
|
spotless {
|
|
java {
|
|
targetExclude("build/generated/**/*")
|
|
eclipse()
|
|
removeUnusedImports()
|
|
trimTrailingWhitespace()
|
|
endWithNewline()
|
|
}
|
|
kotlin {
|
|
ktlint("0.40.0").userData(["disabled_rules": "no-wildcard-imports"])
|
|
licenseHeaderFile "license_header"
|
|
trimTrailingWhitespace()
|
|
endWithNewline()
|
|
}
|
|
}
|
|
|
|
tasks.register("generateVersion", Copy) {
|
|
def templateContext = [version: version]
|
|
inputs.properties templateContext
|
|
from "src/template/java"
|
|
into "$buildDir/generated/java"
|
|
expand templateContext
|
|
}
|
|
|
|
sourceSets.main.java.srcDir generateVersion.outputs.files
|
|
|
|
tasks.register("depsize") {
|
|
description = 'Prints dependencies for "default" configuration'
|
|
doLast() {
|
|
listConfigurationDependencies(configurations.default)
|
|
}
|
|
}
|
|
|
|
tasks.register("depsizeAll") {
|
|
description = 'Prints dependencies for all available configurations'
|
|
doLast() {
|
|
configurations
|
|
.findAll { it.isCanBeResolved() }
|
|
.each { listConfigurationDependencies(it) }
|
|
}
|
|
}
|
|
|
|
def listConfigurationDependencies(Configuration configuration) {
|
|
def formatStr = "%,10.2f"
|
|
|
|
def size = configuration.collect { it.length() / (1024 * 1024) }.sum()
|
|
|
|
def out = new StringBuffer()
|
|
out << "\nConfiguration name: \"${configuration.name}\"\n"
|
|
if (size) {
|
|
out << 'Total dependencies size:'.padRight(65)
|
|
out << "${String.format(formatStr, size)} Mb\n\n"
|
|
|
|
configuration.sort { -it.length() }
|
|
.each {
|
|
out << "${it.name}".padRight(65)
|
|
out << "${String.format(formatStr, (it.length() / 1024))} kb\n"
|
|
}
|
|
} else {
|
|
out << 'No dependencies found'
|
|
}
|
|
println(out)
|
|
}
|