Skip to content

Commit

Permalink
Fix requuired property
Browse files Browse the repository at this point in the history
  • Loading branch information
matusfaro committed Jan 1, 2024
1 parent 6e17005 commit aee5178
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -801,8 +801,8 @@
<rules>
<requireProperty>
<message>Activate profile using -Dprofile rather than -Pprofile</message>
<name>production</name>
<value>true</value>
<property>production</property>
<regex>true</regex>
</requireProperty>
<requireProfile>
<id>native</id>
Expand Down Expand Up @@ -838,8 +838,8 @@
<rules>
<requireProperty>
<message>Activate profile using -Dprofile rather than -Pprofile</message>
<name>staging</name>
<value>true</value>
<property>staging</property>
<regex>true</regex>
</requireProperty>
<requireProfile>
<id>native</id>
Expand Down Expand Up @@ -876,8 +876,8 @@
<requireProperty>
<!-- This is especially important as we activate other profiles on the absence of the property native -->
<message>Activate profile using -Dprofile rather than -Pprofile</message>
<name>native</name>
<value>true</value>
<property>native</property>
<regex>true</regex>
</requireProperty>
</rules>
</configuration>
Expand Down

0 comments on commit aee5178

Please sign in to comment.