px32-bot/build.gradle.kts

72 lines
1.9 KiB
Text
Raw Normal View History

2024-09-18 15:58:53 +00:00
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2024-09-01 14:25:09 +00:00
plugins {
kotlin("jvm") version "2.0.20"
2024-09-18 15:51:42 +00:00
id("com.gradleup.shadow") version "8.3.0"
2024-09-01 14:25:09 +00:00
}
2024-09-07 16:13:13 +00:00
group = property("group")!!
version = property("version")!!
2024-09-01 14:25:09 +00:00
2024-09-03 11:58:09 +00:00
val ktor_version: String by project
2024-09-01 14:25:09 +00:00
val log4j_version: String by project
val exposed_version: String by project
2024-09-18 15:51:42 +00:00
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(21))
2024-09-01 14:25:09 +00:00
}
2024-09-18 15:51:42 +00:00
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
2024-09-07 16:13:13 +00:00
}
2024-09-01 14:25:09 +00:00
2024-09-18 15:51:42 +00:00
repositories {
mavenCentral()
2024-09-07 16:13:13 +00:00
}
2024-09-01 14:25:09 +00:00
2024-09-18 15:51:42 +00:00
dependencies {
implementation(kotlin("stdlib"))
implementation(kotlin("reflect"))
implementation("net.dv8tion:JDA:5.1.0")
implementation("io.ktor:ktor-client-cio:$ktor_version")
implementation("io.ktor:ktor-client-core:$ktor_version")
implementation("org.apache.logging.log4j:log4j-api:$log4j_version")
implementation("org.apache.logging.log4j:log4j-core:$log4j_version")
implementation("org.jetbrains.exposed:exposed-core:$exposed_version")
implementation("org.jetbrains.exposed:exposed-jdbc:$exposed_version")
implementation("org.apache.logging.log4j:log4j-slf4j2-impl:$log4j_version")
implementation("io.ktor:ktor-client-okhttp-jvm:2.3.12")
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
tasks {
2024-09-18 15:58:53 +00:00
withType<KotlinCompile> {
compilerOptions {
jvmTarget.set(JvmTarget.JVM_21)
}
}
processResources {
filesMatching("*.properties") {
expand(project.properties)
}
}
shadowJar {
archiveBaseName.set(project.name)
archiveClassifier.set("")
archiveVersion.set("")
manifest {
attributes["Main-Class"] = "net.projecttl.p.x32.Px32Kt"
}
}
2024-09-18 15:51:42 +00:00
test {
useJUnitPlatform()
}
2024-09-01 14:25:09 +00:00
}