Skip to content

Commit

Permalink
Avoid publishing support modules in Maven Central (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi authored Sep 9, 2024
1 parent f15b51b commit 35960c2
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
<modules>
<module>deployment</module>
<module>runtime</module>
<module>docs</module>
</modules>
<properties>
<quarkus.version>3.8.6</quarkus.version>
Expand Down Expand Up @@ -53,4 +52,18 @@
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>docs</id>
<activation>
<property>
<name>performRelease</name>
<value>!true</value>
</property>
</activation>
<modules>
<module>docs</module>
</modules>
</profile>
</profiles>
</project>

0 comments on commit 35960c2

Please sign in to comment.