4

maven-publishプラグインは、「project-1.0-all.jar」の形式の名前で JAR をポストします。

Mavenを使用しましたが、すべて問題ありませんでした。これで、maven-publish プラグインを使用して Gradle に移行しました。

これが私のpublishingGradleビルドスクリプトセクションです

    publishing {
        publications {
            create<MavenPublication>("mavenJava") {
                artifact(this@run["shadowJar"])
                pom {

                    artifactId = project.name
                    groupId = project.group.toString()
                    packaging = "jar"

                    name.set(project.name)
                    description.set(project.description)
                    url.set("https://gitlab.com/otherwise.su/config")
                    inceptionYear.set("2018")
                    licenses {
                        license {
                            comments.set("Open-source license")
                            distribution.set("repo")
                            name.set("Лицензия")
                            url.set("https://gitlab.com/otherwise.su/config/blob/master/LICENSE.md")
                        }
                    }
                    developers {
                        developer {
                            email.set("postovalovya@gmail.com")
                            id.set("CMDR_Tvis")
                            name.set("Commander Tvis")
                            roles.set(listOf("architect", "developer"))
                            timezone.set("Russian Federation/Novosibirsk")
                            url.set("https://gitlab.com/CMDR_Tvis")
                        }
                    }

                }
            }
        }
        repositories {
            maven("https://gitlab.com/api/v4/projects/10077943/packages/maven") {
                credentials(HttpHeaderCredentials::class) {
                    name = "Job-Token"
                    value = System.getenv("CI_JOB_TOKEN")
                }
                authentication { register("header", HttpHeaderAuthentication::class) }
            }
        }
    }

これが私の完全なbuild-scriptです。

期待される:

「project-1.0.jar」という形式の名前の JAR が公開されます。

実際:

「project-1.0-all.jar」という形式で名前を付けたJARが公開されています。

4

1 に答える 1