无效出版物' maven':具有相同扩展程序和分类器的多个文物(jar

发布于 2025-01-18 08:30:29 字数 1217 浏览 0 评论 0原文

未能将出版物“ maven”发布到存储库“ githubpackages” 无效的出版物“ maven”:具有相同扩展程序和分类器的多个工件(“ jar','source')。

在运行GitHub操作以在GitHub软件包上发布我的Android库时出现此错误,

这是我的代码。

这是build.gradle(库)

android{
    publishing {
        singleVariant('release') {
            withSourcesJar()
            withJavadocJar()
        }
    }
}
afterEvaluate {
publishing {
    publications {
        maven(MavenPublication) {
            groupId mGroupId
            artifactId mArtifactId
            version mVersionName

            from components.release

            artifact androidSourcesJar

            pom {
                name = mLibraryName
                description = mLibraryDescription
            }
        }
    }

    // Update repository details and credentials.
        repositories {
            maven {
                name = "GitHubPackages"
                url = uri("https://maven.pkg.github.com/codebrust/andoid.library")
                credentials {
                    username = System.getenv("GITHUB_ACTOR")
                    password = System.getenv("GITHUB_TOKEN")
                }
            }
        }
    }
}

在GitHub包装上发布Android库时存在错误

Failed to publish publication 'maven' to repository 'GitHubPackages'
Invalid publication 'maven': multiple artifacts with the identical extension and classifier ('jar', 'sources').

This error appeared when running GitHub Actions to publish my android library on GitHub Packages

Here is my code.

this is build.gradle(library)

android{
    publishing {
        singleVariant('release') {
            withSourcesJar()
            withJavadocJar()
        }
    }
}
afterEvaluate {
publishing {
    publications {
        maven(MavenPublication) {
            groupId mGroupId
            artifactId mArtifactId
            version mVersionName

            from components.release

            artifact androidSourcesJar

            pom {
                name = mLibraryName
                description = mLibraryDescription
            }
        }
    }

    // Update repository details and credentials.
        repositories {
            maven {
                name = "GitHubPackages"
                url = uri("https://maven.pkg.github.com/codebrust/andoid.library")
                credentials {
                    username = System.getenv("GITHUB_ACTOR")
                    password = System.getenv("GITHUB_TOKEN")
                }
            }
        }
    }
}

There is an error when publishing android library on GitHub-Packages

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文