Skip to content

Commit

Permalink
Avoid publishing support modules in Maven Central (#232)
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi authored Sep 9, 2024
1 parent f094f5c commit e28876e
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 @@ -15,7 +15,6 @@
<modules>
<module>quarkus-primefaces</module>
<module>quarkus-primefaces-extensions</module>
<module>docs</module>
</modules>
<scm>
<connection>scm:git:[email protected]:quarkiverse/quarkus-primefaces.git</connection>
Expand Down Expand Up @@ -125,4 +124,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 e28876e

Please sign in to comment.