Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-02 17:40:09 +01:00
Generate maven artifacts
I'm not a kotlin dsl expert, but that seems to work.
Dieser Commit ist enthalten in:
Ursprung
a44800659e
Commit
38bdb929f4
@ -2,6 +2,9 @@ import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
|
||||
|
||||
plugins {
|
||||
`java-library`
|
||||
maven
|
||||
java
|
||||
`maven-publish`
|
||||
}
|
||||
|
||||
applyPlatformAndCoreConfiguration()
|
||||
@ -20,8 +23,8 @@ repositories {
|
||||
maven { url = uri("https://repo.destroystokyo.com/repository/maven-public//") }
|
||||
maven { url = uri("http://repo.dmulloy2.net/content/groups/public/") }
|
||||
maven { url = uri("http://ci.ender.zone/plugin/repository/everything/") }
|
||||
maven { url = uri("https://repo.inventivetalent.org/content/groups/public/")}
|
||||
flatDir {dir(File("src/main/resources"))}
|
||||
maven { url = uri("https://repo.inventivetalent.org/content/groups/public/") }
|
||||
flatDir { dir(File("src/main/resources")) }
|
||||
}
|
||||
|
||||
configurations.all {
|
||||
@ -81,6 +84,44 @@ tasks.named<Jar>("jar") {
|
||||
}
|
||||
}
|
||||
|
||||
val jar: Jar by tasks
|
||||
jar.archiveName = "FAWE-Bukkit-API-${project.version}.jar"
|
||||
jar.destinationDir = file("../mvn/com/boydti/FAWE-Bukkit-API/" + project.version)
|
||||
|
||||
task("writeNewPom") {
|
||||
doLast {
|
||||
maven.pom {
|
||||
withGroovyBuilder {
|
||||
"project" {
|
||||
groupId = "com.boydti"
|
||||
artifactId = "FAWE-Bukkit-API"
|
||||
version = "project.version"
|
||||
}
|
||||
}
|
||||
}.writeTo("../mvn/com/boydti/FAWE-Bukkit-API/${project.version}/FAWE-Bukkit-API-${project.version}.pom")
|
||||
maven.pom {
|
||||
withGroovyBuilder {
|
||||
"project" {
|
||||
groupId = "com.boydti"
|
||||
artifactId = "FAWE-Bukkit-API"
|
||||
version = "latest"
|
||||
}
|
||||
}
|
||||
}.writeTo("../mvn/com/boydti/FAWE-Bukkit-API/latest/FAWE-Bukkit-API-latest.pom")
|
||||
}
|
||||
}
|
||||
|
||||
task("dataContent") {
|
||||
doLast {
|
||||
copySpec {
|
||||
from("../mvn/com/boydti/FAWE-Bukkit-API/${project.version}/")
|
||||
into("../mvn/com/boydti/FAWE-Bukkit-API/latest/")
|
||||
include("*.jar")
|
||||
rename("FAWE-Bukkit-API-${project.version}.jar", "FAWE-Bukkit-API-latest.jar")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
tasks.named<ShadowJar>("shadowJar") {
|
||||
dependencies {
|
||||
relocate("org.slf4j", "com.sk89q.worldedit.slf4j")
|
||||
@ -107,3 +148,7 @@ tasks.named<ShadowJar>("shadowJar") {
|
||||
tasks.named("assemble").configure {
|
||||
dependsOn("shadowJar")
|
||||
}
|
||||
|
||||
tasks.named("dataContent").configure {
|
||||
dependsOn("writeNewPom")
|
||||
}
|
||||
|
@ -5,6 +5,9 @@ import com.mendhak.gradlecrowdin.UploadSourceFileTask
|
||||
|
||||
plugins {
|
||||
id("java-library")
|
||||
id("java")
|
||||
id("maven")
|
||||
id("maven-publish")
|
||||
id("net.ltgt.apt-eclipse")
|
||||
id("net.ltgt.apt-idea")
|
||||
id("antlr")
|
||||
@ -98,6 +101,45 @@ tasks.named<Copy>("processResources") {
|
||||
"date" to "${rootProject.ext["date"]}")
|
||||
}
|
||||
}
|
||||
|
||||
val jar: Jar by tasks
|
||||
jar.archiveName = "FAWE-API-${project.version}.jar"
|
||||
jar.destinationDir = file("../mvn/com/boydti/FAWE-API/" + project.version)
|
||||
|
||||
task("writeNewPom") {
|
||||
doLast {
|
||||
maven.pom {
|
||||
withGroovyBuilder {
|
||||
"project" {
|
||||
groupId = "com.boydti"
|
||||
artifactId = "FAWE-API"
|
||||
version = "project.version"
|
||||
}
|
||||
}
|
||||
}.writeTo("../mvn/com/boydti/FAWE-API/${project.version}/FAWE-API-${project.version}.pom")
|
||||
maven.pom {
|
||||
withGroovyBuilder {
|
||||
"project" {
|
||||
groupId = "com.boydti"
|
||||
artifactId = "FAWE-API"
|
||||
version = "latest"
|
||||
}
|
||||
}
|
||||
}.writeTo("../mvn/com/boydti/FAWE-API/latest/FAWE-API-latest.pom")
|
||||
}
|
||||
}
|
||||
|
||||
task("dataContent") {
|
||||
doLast {
|
||||
copySpec {
|
||||
from("../mvn/com/boydti/FAWE-API/${project.version}/")
|
||||
into("../mvn/com/boydti/FAWE-API/latest/")
|
||||
include("*.jar")
|
||||
rename("FAWE-API-${project.version}.jar", "FAWE-API-latest.jar")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
tasks.named<ShadowJar>("shadowJar") {
|
||||
dependencies {
|
||||
include(dependency("com.github.luben:zstd-jni:1.4.3-1"))
|
||||
@ -129,3 +171,8 @@ if (project.hasProperty(crowdinApiKey)) {
|
||||
dependsOn("crowdinDownload")
|
||||
}
|
||||
}
|
||||
|
||||
tasks.named("dataContent").configure {
|
||||
dependsOn("writeNewPom")
|
||||
}
|
||||
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren