26 lines
520 B
Plaintext
26 lines
520 B
Plaintext
plugins {
|
|
kotlin("jvm") version "2.0.0"
|
|
}
|
|
|
|
group = "loli.ball"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven(uri("https://releases.aspose.com/java/repo"))
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test"))
|
|
// implementation("com.aspose:aspose-psd:24.9:jdk16")
|
|
implementation(files("libs/111.jar"))
|
|
implementation("org.javassist:javassist:3.30.2-GA")
|
|
implementation("net.lingala.zip4j:zip4j:2.11.5")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
} |