FileManager/FFMpegJ/build.gradle.kts

32 lines
747 B
Plaintext
Raw Normal View History

2023-04-18 22:06:48 +08:00
plugins {
java
}
group = "cn.wzpmc.filemanager.ffmpeg"
version = "0.0.1-SNAPSHOT"
configurations {
compileOnly {
extendsFrom(configurations.annotationProcessor.get())
}
}
repositories {
mavenCentral()
}
dependencies {
testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.1")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.1")
compileOnly("org.projectlombok:lombok:1.18.26")
annotationProcessor("org.projectlombok:lombok:1.18.26")
// https://mvnrepository.com/artifact/com.alibaba.fastjson2/fastjson2
implementation("com.alibaba.fastjson2:fastjson2:2.0.26")
2023-04-26 18:53:17 +08:00
implementation(
"org.apache.tika:tika-core:2.7.0")
2023-04-18 22:06:48 +08:00
}
tasks.withType<Test> {
useJUnitPlatform()
}