-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
47 lines (37 loc) · 1.11 KB
/
build.gradle
File metadata and controls
47 lines (37 loc) · 1.11 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
plugins {
id "java"
id "com.github.johnrengelman.shadow" version "7.1.2"
}
group "io.github.vyketype.bazaarmarket"
version "0.1-SNAPSHOT"
apply plugin: "java"
compileJava.options.encoding = "UTF-8"
shadowJar {
archiveName = "BazaarMarket.jar"
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
repositories {
mavenCentral()
maven { url "https://repo.aikar.co/content/groups/aikar/" }
}
dependencies {
// lombok
compileOnly "org.projectlombok:lombok:1.18.26"
annotationProcessor 'org.projectlombok:lombok:1.18.26'
// commons
implementation "commons-io:commons-io:2.11.0"
implementation "org.apache.commons:commons-lang3:3.12.0"
// prettytime
implementation "org.ocpsoft.prettytime:prettytime:5.0.4.Final"
// spigot
compileOnly "org.spigotmc:spigot-api:1.20-R0.1-SNAPSHOT"
implementation "co.aikar:acf-bukkit:0.5.1-SNAPSHOT"
implementation "net.kyori:adventure-api:4.14.0"
implementation "com.github.stefvanschie.inventoryframework:IF:0.10.10"
// jetbrains annotations
compileOnly "org.jetbrains:annotations:24.0.1"
}