-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
39 lines (28 loc) · 861 Bytes
/
build.gradle.kts
File metadata and controls
39 lines (28 loc) · 861 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 {
id("java-library")
}
group = "ru.alexander"
version = "1.0"
repositories {
mavenCentral()
}
dependencies {
testImplementation(platform("org.junit:junit-bom:5.9.1"))
testImplementation("org.junit.jupiter:junit-jupiter")
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
implementation("org.jetbrains:annotations:24.1.0")
implementation("org.java-websocket:Java-WebSocket:1.5.6")
testImplementation("org.slf4j:slf4j-nop:2.0.13")
implementation("com.google.code.gson:gson:2.11.0")
}
tasks.test {
useJUnitPlatform()
}
tasks.jar {
manifest {
attributes(mapOf("Implementation-Title" to project.name,
"Implementation-Version" to project.version,
"Automatic-Module-Name" to "ru.alexander.jVTSAPI"))
}
}