यह मेरे 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