Skip to content
This repository has been archived by the owner on Feb 28, 2021. It is now read-only.

Commit

Permalink
Fix artifactory publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
Juuxel committed Jun 11, 2019
1 parent 153a0be commit 194e382
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,16 @@ publishing {
artifactId = archivesBaseName

// add all the jars that should be included when publishing to maven
artifact(jar) {
artifact ("${project.buildDir.absolutePath}/libs/${archivesBaseName}-${project.version}.jar") { //release jar - file location not provided anywhere in loom
classifier null
builtBy remapJar
}

artifact ("${project.buildDir.absolutePath}/libs/${archivesBaseName}-${project.version}-dev.jar") { //release jar - file location not provided anywhere in loom
classifier "dev"
builtBy remapJar
}

artifact(sourcesJar) {
builtBy remapSourcesJar
}
Expand Down

0 comments on commit 194e382

Please sign in to comment.