ultimate-example/build.gradle

40 lines
891 B
Groovy
Raw Normal View History

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