-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
62 lines (50 loc) · 1.34 KB
/
build.gradle.kts
File metadata and controls
62 lines (50 loc) · 1.34 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import net.kyori.indra.IndraPlugin
plugins {
java
id("net.kyori.indra") version "3.1.3"
id("de.eldoria.plugin-yml.bukkit") version "0.7.1"
}
group = "me.glaremasters"
version = "1.0-SNAPSHOT"
apply {
plugin<IndraPlugin>()
}
repositories {
mavenCentral()
maven("https://repo.papermc.io/repository/maven-public/")
maven("https://oss.sonatype.org/content/groups/public/")
maven("https://repo.mikeprimm.com/")
maven("https://repo.glaremasters.me/repository/public/")
}
dependencies {
compileOnly("org.spigotmc:spigot-api:1.21.4-R0.1-SNAPSHOT")
compileOnly("me.glaremasters:guilds:3.5.7.0")
compileOnly("us.dynmap:DynmapCoreAPI:3.7-beta-6")
compileOnly("us.dynmap:dynmap-api:3.7-beta-6")
}
bukkit {
name = "DynmapGuilds"
main = "me.glaremasters.dynmapguilds.DynmapGuilds"
version = "1.0-SNAPSHOT"
apiVersion = "1.21"
authors = listOf("Glare")
depend = listOf("Guilds", "dynmap")
}
tasks {
indra {
mitLicense()
javaVersions {
target(8)
}
github("guilds-plugin", "dynmapguilds") {
publishing(true)
}
publishAllTo("guilds", "https://repo.glaremasters.me/repository/guilds/")
}
compileJava {
options.encoding = "UTF-8"
}
processResources {
expand("version" to rootProject.version)
}
}