-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
31 lines (27 loc) · 793 Bytes
/
build.gradle
File metadata and controls
31 lines (27 loc) · 793 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
30
31
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '7.1.2'
}
group 'me.verni'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
// As of Gradle 5.1, you can limit this to only those
// dependencies you expect from it
content {
includeGroup 'org.bukkit'
includeGroup 'org.spigotmc'
}
}
maven {
url = 'https://nexus.iridiumdevelopment.net/repository/maven-releases/'
}
}
dependencies {
compileOnly 'org.spigotmc:spigot-api:1.20-R0.1-SNAPSHOT'
compileOnly("com.iridium:IridiumColorAPI:1.0.6")
compileOnly("com.iridium:IridiumSkyblock:4.0.5")
compileOnly 'net.luckperms:api:5.4'
}