-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
46 lines (37 loc) · 1.12 KB
/
build.gradle
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
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '8.1.1'
id 'xyz.jpenilla.run-paper' version '2.2.4'
}
group = 'io.github.rysefoxx.quest'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
url "https://s01.oss.sonatype.org/content/groups/public/"
}
maven { url 'https://repo.papermc.io/repository/maven-public/' }
}
dependencies {
compileOnly("io.papermc.paper:paper-api:1.20.2-R0.1-SNAPSHOT")
implementation 'com.zaxxer:HikariCP:5.1.0'
implementation 'org.mariadb.jdbc:mariadb-java-client:3.3.3'
implementation 'com.github.ben-manes.caffeine:caffeine:3.1.8'
implementation 'org.hibernate:hibernate-core:6.5.1.Final'
implementation 'commons-io:commons-io:2.14.0'
annotationProcessor 'org.projectlombok:lombok:1.18.30'
implementation 'org.projectlombok:lombok:1.18.30'
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.3'
testImplementation 'com.github.seeseemelk:MockBukkit-v1.19:2.29.0'
}
test {
useJUnitPlatform()
}
shadowJar {
mergeServiceFiles()
}
tasks {
runServer {
minecraftVersion("1.20.2")
}
}