forked from Brikster/Chatty
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
38 lines (30 loc) · 1.06 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
allprojects {
group = 'ru.mrbrikster'
version = '2.19.14'
}
subprojects {
pluginManager.apply('java-library')
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
tasks {
compileJava {
options.encoding = 'UTF-8'
}
compileTestJava {
options.encoding = 'UTF-8'
}
}
repositories {
mavenCentral()
maven { url = "https://jitpack.io" }
maven { url = "https://hub.spigotmc.org/nexus/content/groups/public/" }
maven { url = "https://repo.extendedclip.com/content/repositories/placeholderapi/" }
maven { url = "https://repo.codemc.org/repository/maven-public" }
maven { url = "https://ci.nametagedit.com/plugin/repository/everything/"; allowInsecureProtocol = true }
}
dependencies {
compileOnlyApi 'org.jetbrains:annotations:17.0.0'
compileOnly 'org.projectlombok:lombok:1.18.22'
annotationProcessor 'org.projectlombok:lombok:1.18.22'
compileOnly 'org.spigotmc:spigot-api:1.19-R0.1-SNAPSHOT'
}
}