/* * PICKSHADOW SERVER KIT SOURCE FILE * Copyright (c) 2024 The PickShadow Server Kit authors * Licensed under the GNU Affero General Public License v3 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ import java.nio.file.Files // Plugins plugins { id("java") id("io.freefair.lombok") version("${pluginLombok}") id("com.gorylenko.gradle-git-properties") version("${pluginGitProperties}") } // Dependencies dependencies { // Lombok compileOnly("org.projectlombok:lombok:${dependencyLombok}") annotationProcessor("org.projectlombok:lombok:${dependencyLombok}") // JetBrains Annotations compileOnly("org.jetbrains:annotations:${dependencyJetbrainsAnnotations}") // Libraries compileOnly("de.staropensource.engine:base:${dependencyStarOpenSourceEngine}") } // Set Java version java { toolchain.languageVersion.set(JavaLanguageVersion.of("${javaTarget}")) } // Git properties configuration // Allows us to embed git commit information in the plugin build gitProperties { dotGitDirectory = file("${rootProject.rootDir}/.git") failOnNoGitDirectory = false // Allow continuing if .git directory is missing for the few who use tarballs extProperty = "gitProps" dateFormat = "yyyy-MM-dd'T'HH:mmZ" dateFormatTimeZone = "UTC" } tasks.register("writeGitProperties") { // This task's only purpose is to copy the git.properties from our git properties plugin to the resources directory so it's included in the final build doLast { File target = file("${project.projectDir}/src/main/resources/pickshadow-git.properties") File source = file("${project.projectDir}/build/resources/main/git.properties") target.delete() source.renameTo(target) } outputs.upToDateWhen({ false }) // Force task execution } generateGitProperties.outputs.upToDateWhen({ false }) // Force task execution processResources.dependsOn(writeGitProperties) // Ensure git.properties file is present // Copy gradle.properties file for inclusion in final build tasks.register("copyGradleProperties") { doFirst { File target = file("${project.projectDir}/src/main/resources/pickshadow-gradle.properties") File source = file(project(":").projectDir.getPath() + "/gradle.properties") target.delete() Files.copy(source.toPath(), target.toPath()) } outputs.upToDateWhen({ false }) // Force task execution } processResources.dependsOn(copyGradleProperties)