ultimate-example/build.gradle

37 lines
649 B
Groovy
Raw Normal View History

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"
2022-09-03 18:15:45 +02:00
compileOnly 'me.map:ultimatekingdom:1.1.1-ALPHA'
2022-07-20 18:18:45 +02:00
}
processResources {
def props = [version: version]
inputs.properties props
filteringCharset 'UTF-8'
filesMatching('plugin.yml') {
expand props
}
}