|
|
|
@ -6,8 +6,8 @@ plugins {
|
|
|
|
|
id 'java'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
group 'net.william278'
|
|
|
|
|
version "2.0.4${versionMetadata()}"
|
|
|
|
|
group 'org.inksnow.husk'
|
|
|
|
|
version "2.0.5${versionMetadata()}"
|
|
|
|
|
defaultTasks 'licenseFormat', 'build'
|
|
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
@ -16,18 +16,18 @@ repositories {
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
implementation 'org.json:json:20230227'
|
|
|
|
|
compileOnly 'net.kyori:adventure-api:4.13.1'
|
|
|
|
|
compileOnly 'net.kyori:adventure-api:4.16.0'
|
|
|
|
|
compileOnly 'org.jetbrains:annotations:24.0.1'
|
|
|
|
|
|
|
|
|
|
testImplementation 'net.kyori:adventure-platform-bukkit:4.3.0'
|
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.3'
|
|
|
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.3'
|
|
|
|
|
testImplementation 'net.kyori:adventure-platform-bukkit:4.3.2'
|
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.2'
|
|
|
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.2'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tasks {
|
|
|
|
|
compileJava {
|
|
|
|
|
options.encoding = 'UTF-8'
|
|
|
|
|
options.release.set(11)
|
|
|
|
|
options.release.set(8)
|
|
|
|
|
}
|
|
|
|
|
jar {
|
|
|
|
|
manifest {
|
|
|
|
@ -65,48 +65,34 @@ test {
|
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
}
|
|
|
|
|
maven {
|
|
|
|
|
name = 'husk-release'
|
|
|
|
|
url = findProperty("repository.huskrelease.url")
|
|
|
|
|
credentials {
|
|
|
|
|
username = findProperty("repository.huskrelease.username")
|
|
|
|
|
password = findProperty("repository.huskrelease.password")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
publications {
|
|
|
|
|
mavenJava(MavenPublication) {
|
|
|
|
|
groupId = 'net.william278'
|
|
|
|
|
artifactId = 'desertwell'
|
|
|
|
|
version = "$rootProject.version"
|
|
|
|
|
artifact shadowJar
|
|
|
|
|
artifact javadocJar
|
|
|
|
|
artifact sourcesJar
|
|
|
|
|
}
|
|
|
|
|
publications {
|
|
|
|
|
mavenJava(MavenPublication) {
|
|
|
|
|
groupId = 'org.inksnow.husk'
|
|
|
|
|
artifactId = 'desertwell'
|
|
|
|
|
version = "$rootProject.version"
|
|
|
|
|
artifact shadowJar
|
|
|
|
|
artifact javadocJar
|
|
|
|
|
artifact sourcesJar
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@SuppressWarnings('GrMethodMayBeStatic')
|
|
|
|
|
def versionMetadata() {
|
|
|
|
|
if (grgit == null) {
|
|
|
|
|
return '-' + System.getenv("GITHUB_RUN_NUMBER") ? 'build.' + System.getenv("GITHUB_RUN_NUMBER") : 'unknown'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Get if there is a tag for this commit
|
|
|
|
|
def tag = grgit.tag.list().find { it.commit.id == grgit.head().id }
|
|
|
|
|
if (tag != null) {
|
|
|
|
@ -114,8 +100,5 @@ def versionMetadata() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Otherwise, get the last commit hash and if it's a clean head
|
|
|
|
|
if (grgit == null) {
|
|
|
|
|
return '-' + System.getenv("GITHUB_RUN_NUMBER") ? 'build.' + System.getenv("GITHUB_RUN_NUMBER") : 'unknown'
|
|
|
|
|
}
|
|
|
|
|
return '-' + grgit.head().abbreviatedId + (grgit.status().clean ? '' : '-indev')
|
|
|
|
|
}
|