ultimate-example/build.gradle
2024-05-23 17:00:37 +02:00

40 lines
891 B
Groovy

plugins {
id 'java'
}
group 'me.map'
version '1.1-SNAPSHOT'
repositories {
mavenCentral()
maven {
name = 'spigotmc-repo'
url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
}
maven {
url = "https://oss.sonatype.org/content/repositories/snapshots/"
}
maven { url = 'https://repo.recorehosting.com/repository/development/' }
maven { url = 'https://git.recorehosting.com/maven/snapshots/' }
}
dependencies {
compileOnly 'org.spigotmc:spigot-api:1.12.2-R0.1-SNAPSHOT'
compileOnly 'me.map:ultimatekingdom:2.12.3.1-RC'
compileOnly 'org.projectlombok:lombok:1.18.30'
annotationProcessor 'org.projectlombok:lombok:1.18.30'
}
processResources {
def props = [version: version]
inputs.properties props
filteringCharset 'UTF-8'
filesMatching('plugin.yml') {
expand props
}
}