-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
39 lines (31 loc) · 841 Bytes
/
Copy pathbuild.gradle.kts
File metadata and controls
39 lines (31 loc) · 841 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
34
35
36
37
38
39
plugins {
kotlin("jvm") version "2.2.0"
kotlin("plugin.serialization") version "1.9.10"
}
group = "de.shadowdara.videoconverter"
version = "0.1.6-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3")
implementation(files("libs/daras_library-0.1.5-SNAPSHOT.jar"))
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(21)
}
tasks {
jar {
manifest {
attributes["Main-Class"] = "de.shadowdara.videoconverter.MainKt"
}
// nur dein Code rein, keine dependencies
from(sourceSets.main.get().output)
// optional: verhindern, dass ungewollt was reingepackt wird
exclude("META-INF/*.SF", "META-INF/*.DSA", "META-INF/*.RSA")
}
}