Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to list all maven profiles defined in project including all sub modules?

I have project with quite a few sub modules, I am just curious is it possible to list all profiles defined in project and sub modules by command line?

like image 388
twid Avatar asked Feb 16 '23 10:02

twid


1 Answers

I think you can use mvn help:all-profiles. This command would list out all profiles in each project. And you can see more details at Maven Help Plugin

like image 152
Tuna Avatar answered Feb 17 '23 22:02

Tuna