Maven 版本标签

发布于 2024-12-21 06:51:15 字数 123 浏览 0 评论 0原文

我想知道这是什么意思:

<version>${artifactId.version}</version>

这是否意味着该版本始终是当前版本?

I am wondering what does this mean:

<version>${artifactId.version}</version>

Does this mean that version is always the current one?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

靖瑶 2024-12-28 06:51:15

这意味着版本由 属性定义:

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <artifactId.version>3.0.0.1</artifactId.version>
</properties>

在此示例中,版本将为 3.0.0.1

另请注意使用 并根据您的项目需求设置版本。

It means that the version is defined by <artifactId.version> property:

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <artifactId.version>3.0.0.1</artifactId.version>
</properties>

In this example, the version would be 3.0.0.1.

Pay attention, also, to use the <project.build.sourceEncoding> and set the versions accordingly to your project needs.

兔小萌 2024-12-28 06:51:15

您可能在 {artifactId.version} 之前缺少 $ 符号。

这意味着您正在使用此 artifactId.version 变量来确定工件的版本。

You may be missing a $ sign before {artifactId.version}.

And it would mean that you're using this artifactId.version variable to determine the version of your artifact.

泛泛之交 2024-12-28 06:51:15

这意味着你可以在maven之外指定版本,这是常见的情况。

例子:

mvn <operation> [params...] -DartifactId.version=1.2.3

It means that you can specify version outside maven, which is a common case.

Example:

mvn <operation> [params...] -DartifactId.version=1.2.3
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文