其他分享
首页 > 其他分享> > POM 文件中 licenses 许可证的定义

POM 文件中 licenses 许可证的定义

作者:互联网

针对不同的项目,我们可能需要在 POM 文件中定义我们使用的许可证。

 

MIT

 

Apache

Apache 许可证的配置信息如下:

    <licenses>
        <license>
            <name>Apache 2.0</name>
            <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
        </license>
    </licenses>

MIT

如果你使用的是 MIT 许可证的话,那么可以使用下面的定义来定义你的许可证。

    <licenses>
        <license>
            <name>MIT License</name>
            <url>https://www.opensource.org/licenses/mit-license.php</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

针对不同的项目,你可以定义不同的许可证类型。

 

https://www.ossez.com/t/pom-licenses/13708

标签:www,定义,POM,https,许可证,licenses,MIT
来源: https://www.cnblogs.com/huyuchengus/p/15213019.html