-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
33 lines (28 loc) · 815 Bytes
/
build.gradle.kts
File metadata and controls
33 lines (28 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
plugins {
id("java")
id("com.github.johnrengelman.shadow") version "8.1.1"
}
group = "me.dynmie.monolizer"
version = "1.0"
repositories {
mavenCentral()
}
dependencies {
testImplementation(platform("org.junit:junit-bom:5.9.1"))
testImplementation("org.junit.jupiter:junit-jupiter")
implementation("org.bytedeco:javacv:1.5.10")
implementation("org.bytedeco:ffmpeg-platform:6.1.1-1.5.10")
implementation("org.jline:jline-terminal-jni:3.25.1")
}
tasks {
test {
useJUnitPlatform()
}
jar {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
manifest {
attributes["Main-Class"] = "me.dynmie.monolizer.MonoMain"
}
from(configurations.runtimeClasspath.map { it -> it.map { if (it.isDirectory) it else zipTree(it) } })
}
}