向gradle中添加标记

nom7f22z  于 2021-07-03  发布在  Java
关注(0)|答案(1)|浏览(210)

关闭。这个问题需要细节或清晰。它目前不接受答案。
**想改进这个问题吗?**通过编辑这个帖子来添加细节并澄清问题。

上个月关门了。
改进这个问题
我已经将我的构建工具从maven改为gradle,并想知道如何在中定义以下标记 build.gradle 文件。

<developers>
    <developer>
        <email></email>
        <name></name>
        <timezone></timezone>
        <roles>
            <role></role>
        </roles>
    </developer>
</developers>

<licenses>
    <license>
        <name>Apache License, Version 2.0</name>
        <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
</licenses>
gudnpqoy

gudnpqoy1#

通过maven发布插件

plugins {
    id 'maven-publish'
}

publishing {
    publications {
        mavenJava(MavenPublication) {
           pom {
              licenses {
                    license {
                        name = 'The Apache License, Version 2.0'
                        url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
                    }
                }
                developers {
                    developer {
                        id = 'johnd'
                        name = 'John Doe'
                        email = 'john.doe@example.com'
                    }
                }
           }
        }
   }
}

相关问题