-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
30 lines (25 loc) · 795 Bytes
/
build.gradle
File metadata and controls
30 lines (25 loc) · 795 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
plugins {
id 'java'
id 'net.minecrell.plugin-yml.bukkit' version '0.6.0'
}
group = 'com.guflimc.kingdomcraft.example'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven { url 'https://repo.jorisg.com/releases' }
maven { url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
}
dependencies {
compileOnly 'org.spigotmc:spigot-api:1.17.1-R0.1-SNAPSHOT'
compileOnly 'com.gufli.kingdomcraft.starter:api:7.1.1'
compileOnly 'com.gufli.kingdomcraft.premium:api:7.1.2'
}
bukkit {
name = rootProject.name
main = project.group + '.ExamplePlugin'
description = 'A KingdomCraft example plugin'
author = 'GufliMC'
website = 'https://guflimc.com/'
apiVersion = '1.17'
depend = ["KingdomCraft", "KingdomCraftPremium"]
}