Adjust ArchivePublication temp dir name
This commit is contained in:
parent
aa8744b450
commit
d80c30418a
1 changed files with 2 additions and 2 deletions
|
@ -45,8 +45,8 @@ abstract class ArchivePublication : ZippedTask() {
|
|||
}
|
||||
|
||||
fun Project.archivePublication(publicationName: String): TaskProvider<ArchivePublication> {
|
||||
val repoName = "archiveTempRepo_$publicationName"
|
||||
val repoDir = layout.buildDirectory.dir(repoName)
|
||||
val repoName = "archive${publicationName.capitalize()}PublicationTempRepo"
|
||||
val repoDir = layout.buildDirectory.dir("tmp/$repoName")
|
||||
the<PublishingExtension>().repositories {
|
||||
maven {
|
||||
name = repoName
|
||||
|
|
Loading…
Reference in a new issue