简体   繁体   中英

Arranging Profiles and Plugins in pom.xml

I have these things in my pom.xml

  • profile1
  • profile2

These profiles are for separate build environment.

I need to make these plugins as common to both profiles.

  • plugin1
  • plugin2
  • plugin3

Where should I place these common plugins?

You can simply put them in the default build section. Since the plugins are common to both profiles: this the best way to do it.

Remark that if the configuration of plugins is slightly different for the different profiles you can use properties in the plugin configuration and define the values of those properties in the profile.

    <build>
       <plugins>
          <plugin>
              <groupId>someGroup</groupId>
              <artifactId>plugin1</artifactId>
              ...
          </plugin>
          <plugin>
              <groupId>someGroup</groupId>
              <artifactId>plugin2</artifactId>
              ...
          </plugin>
          <plugin>
              <groupId>someGroup</groupId>
              <artifactId>plugin3</artifactId>
              ...
          </plugin>
       </plugins>
     </build>

EDIT

Note that this solution will enable the plugins even when no profiles are activated. Not sure this what you need. (you maybe have a third build environment: for instance the developper computer where no profile are defined). In this case the solution of a third profile is the way to go.

 mvn clean install -Pprofile1,profile-common

or

 mvn clean install -Pprofile2, profile-common

and your common plugins defined in profile-common

You can have multiple profiles active at any given point of time. As such you can create a common profile( profile3) and keep the plugins there. The plugins/config which are dependent on specific profiles, can be kept in specific profile1 and profile2.

-P profile-1,profile-3

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM