Archiviert
13
0

Add Gradle Plugin
Einige Prüfungen sind fehlgeschlagen
SteamWarCI Build failed

Dieser Commit ist enthalten in:
Chaoscaot 2023-05-21 21:26:37 +02:00
Ursprung e2710684c0
Commit 7c265bff05
2 geänderte Dateien mit 10 neuen und 57 gelöschten Zeilen

Datei anzeigen

@ -3,37 +3,12 @@ plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '5.0.0'
}
ext.swdep = { s ->
if (file("${rootDir}/lib/${s}.jar").exists()) {
return files("${rootDir}/lib/${s}.jar")
} else {
if (s.contains("-")) {
return "de.steamwar:${s.toLowerCase().replace('-', ':')}"
} else {
return "de.steamwar:${s.toLowerCase()}:RELEASE"
}
}
id 'de.steamwar.gradle' version 'RELEASE'
}
group = 'de.steamwar'
version = ''
Properties steamwarProperties = new Properties()
if (file("steamwar.properties").exists()) {
steamwarProperties.load(file("steamwar.properties").newDataInputStream())
}
ext {
buildName = 'Builder'
artifactName = 'Builder'
uberJarName = "${buildName}-all.jar"
jarName = "${artifactName}.jar"
libs = "${buildDir}/libs"
}
compileJava.options.encoding = 'UTF-8'
sourceCompatibility = '1.8'
@ -57,40 +32,9 @@ repositories {
maven {
url = uri('https://hub.spigotmc.org/nexus/content/repositories/snapshots/')
}
maven {
url = uri('https://steamwar.de/maven')
credentials {
username = steamwarProperties.getProperty("maven.username", "")
password = steamwarProperties.getProperty("maven.password", "")
}
}
}
dependencies {
compileOnly 'org.spigotmc:spigot-api:1.19-R0.1-SNAPSHOT'
compileOnly swdep("SpigotCore")
}
task buildProject {
description 'Build this project'
group "Steamwar"
dependsOn build
}
task finalizeProject {
description 'Finalize this project'
group "Steamwar"
doLast {
if ("${buildDir}" == null) {
return
}
delete fileTree("${libs}").matching {
exclude("${uberJarName}")
}
file(libs + "/" + uberJarName).renameTo(file(libs + "/" + jarName))
}
}
// build.finalizedBy(finalizeProject)

Datei anzeigen

@ -1 +1,10 @@
pluginManagement {
repositories {
gradlePluginPortal()
maven {
url = uri('https://steamwar.de/maven/')
}
}
}
rootProject.name = 'Builder'