px32-bot/build.gradle.kts

52 lines
1.5 KiB
Text
Raw Normal View History

2024-09-01 14:25:09 +00:00
plugins {
id("java")
kotlin("jvm") version "2.0.20"
}
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-07 16:13:13 +00:00
allprojects {
apply(plugin = "java")
apply(plugin = "org.jetbrains.kotlin.jvm")
2024-09-01 14:25:09 +00:00
2024-09-07 16:13:13 +00:00
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(21))
}
2024-09-01 14:25:09 +00:00
2024-09-07 16:13:13 +00:00
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
2024-09-01 14:25:09 +00:00
}
2024-09-07 16:13:13 +00:00
repositories {
mavenCentral()
2024-09-01 14:25:09 +00:00
}
2024-09-07 16:13:13 +00:00
}
2024-09-01 14:25:09 +00:00
2024-09-07 16:13:13 +00:00
subprojects {
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")
2024-09-01 14:25:09 +00:00
}
2024-09-07 16:13:13 +00:00
}
2024-09-01 14:25:09 +00:00
2024-09-07 16:13:13 +00:00
tasks.test {
useJUnitPlatform()
2024-09-01 14:25:09 +00:00
}