-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
29 lines (23 loc) · 770 Bytes
/
build.gradle
File metadata and controls
29 lines (23 loc) · 770 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
plugins {
id 'java'
}
group 'ru.fiw'
version '1.0.1'
sourceCompatibility = 1.8
jar {
destinationDirectory.set(file("${buildDest}"))
}
repositories {
mavenCentral()
maven { url = 'https://repo.extendedclip.com/content/repositories/placeholderapi/' }
maven { url = "https://repo.dmulloy2.net/repository/public/" }
maven { url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
}
dependencies {
compileOnly 'io.netty:netty-all:4.1.5.Final'
compileOnly 'org.spigotmc:spigot-api:1.16.5-R0.1-SNAPSHOT'
compileOnly 'me.clip:placeholderapi:2.10.9'
compileOnly 'com.comphenix.protocol:ProtocolLib:4.6.0'
compileOnly 'org.projectlombok:lombok:1.18.16'
annotationProcessor 'org.projectlombok:lombok:1.18.16'
}