forked from MrMicky-FR/WorldEditSelectionVisualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
31 lines (25 loc) · 892 Bytes
/
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
allprojects {
group = 'fr.mrmicky'
version = '2.0.7'
}
subprojects {
apply plugin: 'java'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
repositories {
mavenCentral()
maven { url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
maven { url 'https://maven.sk89q.com/repo/' }
maven { url 'https://mvn.intellectualsites.com/content/repositories/releases/' }
maven { url 'https://repo.codemc.io/repository/maven-public/' }
maven { url 'https://repo.extendedclip.com/content/repositories/placeholderapi/' }
}
dependencies {
implementation 'org.jetbrains:annotations:20.1.0'
compileOnly 'org.spigotmc:spigot-api:1.16.4-R0.1-SNAPSHOT'
compileOnly 'me.clip:placeholderapi:2.10.9'
}
}