set correct artifact paths

This commit is contained in:
Pierre Kisters 2020-08-16 20:57:36 +02:00
parent 228f13a8a7
commit 929c9f4fe4
4 changed files with 22 additions and 48 deletions

View file

@ -14,8 +14,8 @@ sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
archivesBaseName = project.archives_base_name
version = project.mod_version + "+" + project.minecraft_version
group = project.maven_group
version = parent.version
group = parent.group
configurations {
shadow
@ -75,23 +75,12 @@ jar {
}
}
// configure the maven publication
publishing {
publications {
mavenJava(MavenPublication) {
// add all the jars that should be included when publishing to maven
artifact(remapJar) {
builtBy remapJar
}
artifact(sourcesJar) {
builtBy remapSourcesJar
}
}
}
// select the repositories you want to publish to
repositories {
// uncomment to publish to the local maven
// mavenLocal()
}
remapJar {
archiveName = "${archivesBaseName}-${version}-fabric-${project.minecraft_version}.jar"
destinationDir = file '../target'
}
remapJar.doLast {
task ->
ant.checksum file: task.archivePath
}