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/")
|
2024-01-19 17:37:59 +01:00
|
|
|
buildVersion = System.getenv("BUILD_NUMBER") == null || Boolean.parseBoolean(System.getenv("STABLE_BUILD")) ?
|
|
|
|
version : version + "-b" + System.getenv("BUILD_NUMBER")
|
2023-03-25 10:53:58 +01:00
|
|
|
}
|
|
|
|
|
2021-12-25 19:51:51 +01:00
|
|
|
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/' }
|
2021-12-25 19:51:51 +01:00
|
|
|
maven { url 'https://repo.bg-software.com/repository/api/' }
|
2021-06-11 21:16:18 +02:00
|
|
|
maven { url 'https://repo.bg-software.com/repository/common/' }
|
2022-12-10 15:31:43 +01:00
|
|
|
maven { url 'https://repo.bg-software.com/repository/dependencies/' }
|
2021-06-11 21:16:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-12-25 19:51:51 +01:00
|
|
|
compileOnly "com.bgsoftware.common.reflection:ReflectionUtils:latest"
|
2021-01-01 18:40:42 +01:00
|
|
|
}
|
|
|
|
|
2022-08-12 13:16:39 +02: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 {
|
2022-08-12 13:16:39 +02:00
|
|
|
dependsOn checkDebug
|
2021-01-01 18:40:42 +01:00
|
|
|
dependsOn shadowJar
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-25 19:51:51 +01:00
|
|
|
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
|
|
|
|
2021-06-11 21:16:18 +02:00
|
|
|
implementation 'com.bgsoftware.common.reflection:ReflectionUtils:latest'
|
2022-01-22 14:43:46 +01:00
|
|
|
implementation 'com.bgsoftware.common.config:CommentedConfiguration:1.0.3'
|
2023-11-24 19:58:39 +01:00
|
|
|
implementation 'com.bgsoftware.common.dependencies:DependenciesManager:b2'
|
2021-06-11 21:16:18 +02:00
|
|
|
|
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 {
|
2022-08-06 11:01:31 +02:00
|
|
|
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)
|
2021-01-04 00:24:56 +01:00
|
|
|
|
2023-03-25 10:53:58 +01:00
|
|
|
archiveFileName = rootProject.name + "-" + rootProject.buildVersion + ".jar"
|
2021-01-04 00:24:56 +01:00
|
|
|
|
2023-03-25 10:53:58 +01:00
|
|
|
delete fileTree(rootProject.targetFolder.getAbsolutePath())
|
2021-01-04 00:24:56 +01:00
|
|
|
|
2022-09-10 20:32:48 +02:00
|
|
|
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")]
|
|
|
|
}
|
|
|
|
|
2021-05-17 10:21:58 +02:00
|
|
|
task copyAPI(type: Copy) {
|
2023-03-25 10:53:58 +01:00
|
|
|
from rootProject.archiveFolder.getAbsolutePath() + '/API.jar'
|
|
|
|
into rootProject.targetFolder.getAbsolutePath()
|
2021-05-17 10:21:58 +02:00
|
|
|
rename('API.jar', rootProject.name + 'API.jar')
|
|
|
|
}
|
|
|
|
|
2021-03-19 20:23:07 +01:00
|
|
|
clean {
|
2023-03-25 10:53:58 +01:00
|
|
|
delete rootProject.archiveFolder
|
2021-03-19 20:23:07 +01:00
|
|
|
}
|
|
|
|
|
2021-01-01 18:40:42 +01:00
|
|
|
build {
|
|
|
|
dependsOn shadowJar
|
2021-05-17 10:21:58 +02:00
|
|
|
dependsOn copyAPI
|
2021-03-19 20:23:07 +01:00
|
|
|
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
|
2021-03-19 20:23:07 +01:00
|
|
|
build.shouldRunAfter subprojects.build
|