|
|
|
import org.apache.tools.ant.filters.ReplaceTokens
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id 'org.cadixdev.licenser' version '0.6.1' apply false
|
|
|
|
id 'io.github.goooler.shadow' version '8.1.7'
|
|
|
|
id 'org.ajoberstar.grgit' version '5.2.2'
|
|
|
|
id 'maven-publish'
|
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
|
|
|
group 'net.william278'
|
|
|
|
version "$ext.library_version${versionMetadata()}"
|
|
|
|
description "$ext.library_description"
|
|
|
|
defaultTasks 'licenseFormat', 'build'
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
repositories {
|
|
|
|
if (System.getenv("RELEASES_MAVEN_USERNAME") != null) {
|
|
|
|
maven {
|
|
|
|
name = "william278-releases"
|
|
|
|
url = "https://repo.william278.net/releases"
|
|
|
|
credentials {
|
|
|
|
username = System.getenv("RELEASES_MAVEN_USERNAME")
|
|
|
|
password = System.getenv("RELEASES_MAVEN_PASSWORD")
|
|
|
|
}
|
|
|
|
authentication {
|
|
|
|
basic(BasicAuthentication)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (System.getenv("SNAPSHOTS_MAVEN_USERNAME") != null) {
|
|
|
|
maven {
|
|
|
|
name = "william278-snapshots"
|
|
|
|
url = "https://repo.william278.net/snapshots"
|
|
|
|
credentials {
|
|
|
|
username = System.getenv("SNAPSHOTS_MAVEN_USERNAME")
|
|
|
|
password = System.getenv("SNAPSHOTS_MAVEN_PASSWORD")
|
|
|
|
}
|
|
|
|
authentication {
|
|
|
|
basic(BasicAuthentication)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
apply plugin: 'io.github.goooler.shadow'
|
|
|
|
apply plugin: 'org.cadixdev.licenser'
|
|
|
|
apply plugin: 'java'
|
|
|
|
|
|
|
|
compileJava.options.encoding = 'UTF-8'
|
|
|
|
compileJava.options.release.set 17
|
|
|
|
javadoc.options.encoding = 'UTF-8'
|
|
|
|
javadoc.options.addStringOption('Xdoclint:none', '-quiet')
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
|
|
|
maven { url 'https://repo.papermc.io/repository/maven-public/' }
|
|
|
|
maven { url 'https://libraries.minecraft.net/' }
|
|
|
|
maven { url 'https://maven.fabricmc.net/' }
|
|
|
|
maven { url 'https://mvn-repo.arim.space/lesser-gpl3/' }
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.2'
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.10.2'
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.10.2'
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
|
|
|
|
license {
|
|
|
|
header = rootProject.file('HEADER')
|
|
|
|
include '**/*.java'
|
|
|
|
newLine = true
|
|
|
|
}
|
|
|
|
|
|
|
|
processResources {
|
|
|
|
filesMatching(['**/*.json', '**/*.yml']) {
|
|
|
|
filter ReplaceTokens as Class, beginToken: '${', endToken: '}',
|
|
|
|
tokens: rootProject.ext.properties
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
subprojects {
|
|
|
|
version rootProject.version
|
|
|
|
archivesBaseName = "${rootProject.name}-${project.name.capitalize()}"
|
|
|
|
|
|
|
|
jar {
|
|
|
|
from '../LICENSE'
|
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
destinationDirectory.set(file("$rootDir/target"))
|
|
|
|
archiveClassifier.set('')
|
|
|
|
}
|
|
|
|
|
|
|
|
if (['example-plugin', 'fabric-1.20.6', 'paper'].contains(project.name)) {
|
|
|
|
compileJava.options.release.set 21
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't include example plugin in publishing
|
|
|
|
if (['example-plugin'].contains(project.name)) return;
|
|
|
|
|
|
|
|
// API publishing
|
|
|
|
java {
|
|
|
|
withSourcesJar()
|
|
|
|
withJavadocJar()
|
|
|
|
}
|
|
|
|
sourcesJar {
|
|
|
|
destinationDirectory.set(file("$rootDir/target"))
|
|
|
|
}
|
|
|
|
javadocJar {
|
|
|
|
destinationDirectory.set(file("$rootDir/target"))
|
|
|
|
}
|
|
|
|
shadowJar.dependsOn(sourcesJar, javadocJar)
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
if (['common'].contains(project.name)) {
|
|
|
|
publications {
|
|
|
|
mavenJavaCommon(MavenPublication) {
|
|
|
|
groupId = 'net.william278.uniform'
|
|
|
|
artifactId = 'uniform-common'
|
|
|
|
version = "$rootProject.version"
|
|
|
|
artifact shadowJar
|
|
|
|
artifact sourcesJar
|
|
|
|
artifact javadocJar
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (['paper'].contains(project.name)) {
|
|
|
|
publications {
|
|
|
|
mavenJavaPaper(MavenPublication) {
|
|
|
|
groupId = 'net.william278.uniform'
|
|
|
|
artifactId = 'uniform-paper'
|
|
|
|
version = "$rootProject.version"
|
|
|
|
artifact shadowJar
|
|
|
|
artifact sourcesJar
|
|
|
|
artifact javadocJar
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (['bukkit'].contains(project.name)) {
|
|
|
|
publications {
|
|
|
|
mavenJavaBukkit(MavenPublication) {
|
|
|
|
groupId = 'net.william278.uniform'
|
|
|
|
artifactId = 'uniform-bukkit'
|
|
|
|
version = "$rootProject.version"
|
|
|
|
artifact shadowJar
|
|
|
|
artifact sourcesJar
|
|
|
|
artifact javadocJar
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (['velocity'].contains(project.name)) {
|
|
|
|
publications {
|
|
|
|
mavenJavaVelocity(MavenPublication) {
|
|
|
|
groupId = 'net.william278.uniform'
|
|
|
|
artifactId = 'uniform-velocity'
|
|
|
|
version = "$rootProject.version"
|
|
|
|
artifact shadowJar
|
|
|
|
artifact sourcesJar
|
|
|
|
artifact javadocJar
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (['fabric-1.20.1'].contains(project.name)) {
|
|
|
|
publications {
|
|
|
|
mavenJavaFabric1_20_1(MavenPublication) {
|
|
|
|
groupId = 'net.william278.uniform'
|
|
|
|
artifactId = 'uniform-fabric'
|
|
|
|
version = "${rootProject.version}+1.20.1"
|
|
|
|
artifact shadowJar
|
|
|
|
artifact sourcesJar
|
|
|
|
artifact javadocJar
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (['fabric-1.20.6'].contains(project.name)) {
|
|
|
|
publications {
|
|
|
|
mavenJavaFabric1_20_6(MavenPublication) {
|
|
|
|
groupId = 'net.william278.uniform'
|
|
|
|
artifactId = 'uniform-fabric'
|
|
|
|
version = "${rootProject.version}+1.20.6"
|
|
|
|
artifact shadowJar
|
|
|
|
artifact sourcesJar
|
|
|
|
artifact javadocJar
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
jar.dependsOn shadowJar
|
|
|
|
clean.delete "$rootDir/target"
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.lifecycle("Building Uniform ${version} by William278")
|
|
|
|
|
|
|
|
@SuppressWarnings('GrMethodMayBeStatic')
|
|
|
|
def versionMetadata() {
|
|
|
|
// Require grgit
|
|
|
|
if (grgit == null) {
|
|
|
|
return '-unknown'
|
|
|
|
}
|
|
|
|
|
|
|
|
// If unclean, return the last commit hash with -indev
|
|
|
|
if (!grgit.status().clean) {
|
|
|
|
return '-' + grgit.head().abbreviatedId + '-indev'
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise if this matches a tag, return nothing
|
|
|
|
def tag = grgit.tag.list().find { it.commit.id == grgit.head().id }
|
|
|
|
if (tag != null) {
|
|
|
|
return ''
|
|
|
|
}
|
|
|
|
return '-' + grgit.head().abbreviatedId
|
|
|
|
}
|