2022-07-20 18:18:45 +02:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
|
|
|
group 'me.map'
|
|
|
|
version '1.0-SNAPSHOT'
|
|
|
|
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven {
|
|
|
|
name = 'spigotmc-repo'
|
|
|
|
url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
|
|
|
|
}
|
|
|
|
|
|
|
|
maven {
|
|
|
|
name = 'recorehosting'
|
|
|
|
url = 'https://git.recorehosting.com/maven/snapshots/'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compileOnly "org.spigotmc:spigot:1.8-R0.1-SNAPSHOT"
|
2023-06-23 10:09:24 +02:00
|
|
|
compileOnly 'me.map:ultimatekingdom:ALPHA-1.7.37'
|
2022-07-20 18:18:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
processResources {
|
|
|
|
def props = [version: version]
|
|
|
|
inputs.properties props
|
|
|
|
filteringCharset 'UTF-8'
|
|
|
|
filesMatching('plugin.yml') {
|
|
|
|
expand props
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|