-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
53 lines (42 loc) · 1.29 KB
/
build.gradle.kts
File metadata and controls
53 lines (42 loc) · 1.29 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
plugins {
java
`maven-publish`
}
group = "org.leycm.neck"
description = "Neck utils"
version = "2.1.0"
java {
toolchain {
languageVersion = JavaLanguageVersion.of(22)
}
}
repositories {
mavenCentral()
maven("https://jitpack.io")
}
dependencies {
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
implementation("org.springframework:spring-context:6.1.9")
implementation("com.zaxxer:HikariCP:5.0.1")
implementation("com.google.code.gson:gson:2.13.1")
implementation("org.jetbrains:annotations:24.0.1")
implementation("org.slf4j:slf4j-api:2.0.9")
implementation("org.slf4j:slf4j-simple:2.0.9")
implementation("net.kyori:adventure-api:4.24.0")
implementation("net.kyori:adventure-text-serializer-gson:4.24.0")
implementation("net.kyori:adventure-text-serializer-plain:4.24.0")
implementation("net.kyori:adventure-text-minimessage:4.24.0")
implementation("net.kyori:adventure-text-serializer-legacy:4.24.0")
}
tasks.test {
useJUnitPlatform()
}
publishing {
publications.create<MavenPublication>("maven") {
from(components["java"])
groupId = group.toString()
artifactId = "neck"
version = rootProject.version as String?
}
}