“-Dfast” 在 mvn 命令行中是什么意思?

huangapple go评论64阅读模式
英文:

what does -Dfast mean in mvn command line?

问题

我收到了编译项目的命令。

mvn clean install -DskipTests -Dfast -Dmaven.compile.fork=true -Dscala-2.11

但我不太理解 -Dfast 是什么意思,搜索了所有页面仍然没有找到相关信息。

有人可以帮助我吗?

搜索了文档和GitHub,但没有找到答案。

我想知道这个参数的确切含义。

我的 POM 文件:
https://github.com/apache/flink/blob/master/pom.xml

英文:

i got this comamnd to compile project.

mvn clean install -DskipTests -Dfast -Dmaven.compile.fork=true -Dscala-2.11

but i dont quite understand -Dfast mean,after search all the pages still got nothing related to this.

Anyone can help me?

searched document and github but no answer for this.

i wanna know the exactly meaning of this parameter.

my pom file
https://github.com/apache/flink/blob/master/pom.xml

答案1

得分: 2

看到POM时,人们会看到它激活了一个配置文件:

<profile>
  <id>fast</id>
  <activation>
    <property>
      <name>fast</name>
    </property>
  </activation>
英文:

Looking at the POM, one sees that it activates a profile:

&lt;profile&gt;
  &lt;id&gt;fast&lt;/id&gt;
  &lt;activation&gt;
	&lt;property&gt;
		&lt;name&gt;fast&lt;/name&gt;
	&lt;/property&gt;
  &lt;/activation&gt;

huangapple
  • 本文由 发表于 2023年3月7日 17:52:52
  • 转载请务必保留本文链接:https://go.coder-hub.com/75660372.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定