在 intiliji idea 中使用参数运行 Maven 插件目标
我正在使用 liquibase maven 插件来运行和回滚迁移。
我使用命令行运行回滚目标,如下所示:
mvn liquibase:rollback -Dliquibase.rollbackCount=1
如何在 intiliji idea 中编辑配置以使用给定参数运行目标。
我正在使用 intellij idea 版本:2021.3.2
I'm using the liquibase maven plugin to run and rollback the migrations.
I'm running the rollback goal using the command line as follows:
mvn liquibase:rollback -Dliquibase.rollbackCount=1
How to edit the configuration in intiliji idea to run the goal with the given parameter.
I'm using the intellij idea version : 2021.3.2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要为此创建自定义运行配置,这是做到这一点的方法: run/debug配置:maven
您基本上需要
完毕!现在,您只需要从运行配置的下拉菜单中选择它并执行它。
You need to create a custom Run Configuration for that, here is how to do it: Run/Debug Configuration: Maven
You'll basically need to
Done! Now you just need to select it from the dropdown menu of run configurations and execute it.