이것은 내 pom.xml의 스 니펫입니다. 다음을 시도했지만 프로필이 활성화되지 않았습니다.
mvn clean install -Pdev1
mvn clean install -P dev1
시도했을 때 mvn help:active-profiles
활성 상태로 나열된 프로필이 없습니다. 내가 설정 한 경우 <activeByDefault>
에 대해 dev1
에 true
, 그리고 실행 mvn help:active-profiles
, 그것은 프로파일이 활성화되어 나에게 보여줍니다.
<profile>
<id>dev1</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemPropertyVariables>
<env>local</env>
<properties.file>src/test/resources/dev1.properties</properties.file>
</systemPropertyVariables>
<suiteXmlFiles>
<suiteXmlFile>src/test/resources/dev1.testng.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>dev2</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemPropertyVariables>
<env>local</env>
<properties.file>src/test/resources/dev2.properties</properties.file>
</systemPropertyVariables>
<suiteXmlFiles>
<suiteXmlFile>src/test/resources/dev2.testng.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
</plugins>
</build>
</profile>
내 프로필이 활성화되지 않는 이유가 궁금합니다. 비슷한 문제가 발생한 사람이 있습니까?
-P
예상 ... FWIW ... 같은 작업을 수행