在脚本中使用 -P 和 mvn install 命令。
我的服务器中有这个 Linux 脚本。该脚本用于构建应用程序。
cvs checkout MacMoira
cd MacMoira
mvn clean
mvn install -P MacMoira
exit 0
我不明白这一行“mvn install -P MacMoira”。 有人可以告诉我使用 -P 和 mvn install 有什么用处吗?
非常感谢 。
I have this Linux script inside our server . This script is used for building the Application .
cvs checkout MacMoira
cd MacMoira
mvn clean
mvn install -P MacMoira
exit 0
I did not understand this line "mvn install -P MacMoira" .
Could anybody please tell me what is the use of using -P with mvn install .
Thank you very much .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
-P
在 Maven 中指定具有特定设置的配置文件(在本例中为配置文件MacMoira
)请参阅:配置文件简介
-P
specifies a profile in Maven with specific settings (in this case the profileMacMoira
)See: Introduction to profiles
当您运行
mvn --help
时,它将返回以下信息:在 maven 的 pom.xml 中,指定了
,您可以使用激活这些信息-P
标志when you run
mvn --help
it will return this information:within the maven's pom.xml there are
<profiles>
specified, these you can activate using the-P
flag