Skip to content

Commit

Permalink
Avoid publishing support modules in Maven Central (#284)
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi authored Sep 17, 2024
1 parent f24f0f9 commit a63b1dd
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
</scm>
<modules>
<module>bom</module>
<module>docs</module>
<module>extensions</module>
<module>internal</module>
</modules>
Expand Down Expand Up @@ -80,6 +79,18 @@
</pluginManagement>
</build>
<profiles>
<profile>
<id>docs</id>
<activation>
<property>
<name>performRelease</name>
<value>!true</value>
</property>
</activation>
<modules>
<module>docs</module>
</modules>
</profile>
<profile>
<id>it</id>
<activation>
Expand Down

0 comments on commit a63b1dd

Please sign in to comment.