英文:
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:
<profile>
<id>fast</id>
<activation>
<property>
<name>fast</name>
</property>
</activation>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论