WildLoaders/build.gradle

117 lines
3.0 KiB
Groovy
Raw Normal View History

2021-01-12 19:22:29 +01:00
plugins {
id 'java'
2023-03-25 10:53:58 +01:00
id 'com.github.johnrengelman.shadow' version '7.1.2'
2021-01-12 19:22:29 +01:00
id 'maven-publish'
}
2021-01-01 18:40:42 +01:00
2021-01-12 19:22:29 +01:00
group 'WildLoaders'
2023-09-30 20:28:14 +02:00
version = "2023.3"
2021-01-01 18:40:42 +01:00
2023-03-25 10:53:58 +01:00
project.ext {
archiveFolder = file("archive/")
targetFolder = file("target/")
buildVersion = System.getenv("BUILD_NUMBER") == null ? version : version + "-b" + System.getenv("BUILD_NUMBER")
}
allprojects {
2021-01-01 18:40:42 +01:00
apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'
repositories {
maven { url 'https://repo.bg-software.com/repository/nms/' }
maven { url 'https://repo.bg-software.com/repository/api/' }
maven { url 'https://repo.bg-software.com/repository/common/' }
maven { url 'https://repo.bg-software.com/repository/dependencies/' }
}
dependencies {
compileOnly "com.bgsoftware.common.reflection:ReflectionUtils:latest"
2021-01-01 18:40:42 +01:00
}
task checkDebug() {
Set<File> filesWithDebug = fileTree('src/main/java').filter { file ->
file.text.contains('Bukkit.broadcastMessage')
}.getFiles()
if(!filesWithDebug.isEmpty())
throw new GradleException("Found debug messages: " + filesWithDebug)
}
2021-01-01 18:40:42 +01:00
build {
dependsOn checkDebug
2021-01-01 18:40:42 +01:00
dependsOn shadowJar
}
}
subprojects {
shadowJar {
archiveFileName = "${project.name}.jar"
2023-03-25 10:53:58 +01:00
destinationDirectory = rootProject.archiveFolder
2021-01-01 18:40:42 +01:00
}
}
dependencies {
2023-03-25 10:53:58 +01:00
implementation fileTree(rootProject.archiveFolder.getAbsolutePath())
2021-01-12 19:22:29 +01:00
implementation project(":API")
2021-01-01 18:40:42 +01:00
implementation 'com.bgsoftware.common.reflection:ReflectionUtils:latest'
implementation 'com.bgsoftware.common.config:CommentedConfiguration:1.0.3'
implementation 'com.bgsoftware.common.dependencies:DependenciesManager:b1'
2021-01-01 18:40:42 +01:00
// Spigot jars
2021-08-31 19:43:45 +02:00
compileOnly "org.spigotmc:v1_8_R3:latest"
2021-01-01 18:40:42 +01:00
compileOnly 'org.spigotmc:v1_16_R3-Tuinity:latest'
}
jar {
from {
2023-03-25 10:53:58 +01:00
for (File file : rootProject.archiveFolder.listFiles()) {
2021-01-01 18:40:42 +01:00
zipTree(file)
}
}
2021-01-12 19:22:29 +01:00
}
2021-01-01 18:40:42 +01:00
2021-01-12 19:22:29 +01:00
processResources {
outputs.upToDateWhen { false }
2021-01-12 19:22:29 +01:00
eachFile { details ->
if (details.name.contentEquals('plugin.yml')) {
filter { String line ->
2023-03-25 10:53:58 +01:00
line.replace('${project.version}', rootProject.buildVersion)
2021-01-01 18:40:42 +01:00
}
}
}
}
shadowJar {
dependsOn(jar)
2023-03-25 10:53:58 +01:00
archiveFileName = rootProject.name + "-" + rootProject.buildVersion + ".jar"
2023-03-25 10:53:58 +01:00
delete fileTree(rootProject.targetFolder.getAbsolutePath())
exclude '*exclude.jar'
2023-03-25 10:53:58 +01:00
destinationDirectory = rootProject.targetFolder
2021-01-01 18:40:42 +01:00
from sourceSets.getByName("main").output
configurations = [project.configurations.getByName("runtimeClasspath")]
}
task copyAPI(type: Copy) {
2023-03-25 10:53:58 +01:00
from rootProject.archiveFolder.getAbsolutePath() + '/API.jar'
into rootProject.targetFolder.getAbsolutePath()
rename('API.jar', rootProject.name + 'API.jar')
}
clean {
2023-03-25 10:53:58 +01:00
delete rootProject.archiveFolder
}
2021-01-01 18:40:42 +01:00
build {
dependsOn shadowJar
dependsOn copyAPI
dependsOn clean
2021-01-01 18:40:42 +01:00
}
2021-01-12 19:22:29 +01:00
2021-01-01 18:40:42 +01:00
publish.shouldRunAfter shadowJar
shadowJar.shouldRunAfter build
build.shouldRunAfter subprojects.build