Skip to content

Commit

Permalink
Fix profile activation
Browse files Browse the repository at this point in the history
  • Loading branch information
rnc committed Oct 30, 2024
1 parent ff393eb commit 68211b1
Showing 1 changed file with 10 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,9 @@ private String getMavenSetup() {
<profile>
<id>secondary</id>
<activation>
<activeByDefault>true</activeByDefault>
<property>
<name>!skipSecondary</name>
</property>
</activation>
<repositories>
<repository>
Expand All @@ -271,7 +273,9 @@ private String getMavenSetup() {
<profile>
<id>local-deployment</id>
<activation>
<activeByDefault>true</activeByDefault>
<property>
<name>!skipLocalDeployment</name>
</property>
</activation>
<properties>
<altDeploymentRepository>
Expand All @@ -280,9 +284,11 @@ private String getMavenSetup() {
</properties>
</profile>
<profile>
<id>PROXY_ENABLED</id>
<id>proxy-enabled</id>
<activation>
<activeByDefault>true</activeByDefault>
<property>
<name>!skipProxyEnabled</name>
</property>
</activation>
<properties>
<PROXY_ENABLED>false</PROXY_ENABLED>
Expand Down

0 comments on commit 68211b1

Please sign in to comment.