1. 程式人生 > >啟用maven profile的四種方式

啟用maven profile的四種方式

1. 根據環境自動啟用。

<profile>  
  <id>dev</id>  
  <activation>  
    <activeByDefault>false</activeByDefault>  
    <jdk>1.5</jdk>  
    <os>  
      <name>Windows XP</name>  
      <family>Windows</family>  
      <arch>x86</arch>  
      <version>5.1.2600</version>  
    </os>  
    <property>  
      <name>mavenVersion</name>  
      <value>2.0.5</value>  
    </property>  
    <file>  
      <exists>file2.properties</exists>  
      <missing>file1.properties</missing>  
    </file>  
  </activation>  
  ...  
</profile> 

2. 通過命令列啟用。mvn clean install -Pmyprofile

3. 配置預設自動啟用。

<profile>  
  <id>dev</id>  
  <activation>  
    <activeByDefault>true</activeByDefault>  
  </activation>  
  ...  
</profile> 
4. 配置 settings.xml 檔案 profile 啟用。
<settings>  
  ...  
  <activeProfiles>  
    <activeProfile>local_db</activeProfile>  
  </activeProfiles>  
</settings>