<build>
<resources>
<resource><directory>src/main/resources-${environment}</directory></resource>
...
</build>
<profiles>
<profile>
<id>local</id>
<activation><activeByDefault>true</activeByDefault></activation>
<properties>
<environment>local</environment>
</properties>
...
</profile>
<profile>
<id>development</id>
<properties>
<environment>development</environment>
</properties>
...
</profile>
...
</profiles>
Eclipse를 쓰는 경우
Project의 Properties에서 Maven 항목을 보면 Activation할 Profile을 지정할 수 있게 되어 있다.
Command line인 경우
다들 알다시피 아래와 같이 -P 옵션을 줘서 선택 가능하다.
mvn -Pdevelopment jetty:run
'SW-PRODUCT > 개발' 카테고리의 다른 글
개발자가 보면 암걸리는 동영상..7개의 직교하는 선 (0) | 2014.11.19 |
---|---|
ssh 세팅 (0) | 2014.10.10 |
간만에 Maven Plugin 끄적임 (0) | 2014.09.24 |
Deep Learning?... Neural Network... (0) | 2014.08.25 |
[링크] Lessons from Building and Scaling LinkedIn. (Qcon N.Y. 2013) (0) | 2014.06.15 |