profiles
<build> <plugins> <!-- display active profile in compile phase --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-help-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>show-profiles</id> <phase>compile</phase> <goals> <goal>active-profiles</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
<profile> <id>active-on-property-environment</id> <activation> <property> <name>environment</name> </property> </activation> </profile><profile> <id>not-active-on-property-environment</id> <activation> <property> <name>!environment</name> </property> </activation> </profile>
Last updated