英文:
How to create a maven profile from custom maven mojo
问题
如何从自定义Maven插件中创建新的配置文件?
英文:
I'm creating my own custom maven mojo to manage custom profiles, I'm using project.setActiveProfiles(profiles);
to create profiles but I think this method only to activate profiles not create them.
How I can create a new profile from custom maven mojo?
答案1
得分: 1
不能在构建过程中创建配置文件。
如果有一些配置文件需要多个人使用,将它们放入公司的父POM中。
英文:
You cannot create profiles during the build.
If some profiles are needed by several people, put them into the company parent POM.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论