Merge pull request #274 from IntellectualSites/api

Generate maven artifacts
This commit is contained in:
Jesse Boyd 2019-11-29 13:49:03 +11:00 committed by GitHub
commit 79d9bda912
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 94 additions and 2 deletions

View File

@ -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")
}

View File

@ -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")
}