Skip to content

Commit

Permalink
Avoid publishing support modules in Maven Central (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi authored Sep 9, 2024
1 parent 2ac2483 commit de77974
Showing 1 changed file with 26 additions and 2 deletions.
28 changes: 26 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
<modules>
<module>extension</module>
<module>test-extension</module>
<module>integration-tests</module>
<module>docs</module>
</modules>
<scm>
<connection>scm:git:[email protected]:quarkiverse/quarkus-bucket4j.git</connection>
Expand Down Expand Up @@ -84,4 +82,30 @@
</plugins>
</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>
<property>
<name>performRelease</name>
<value>!true</value>
</property>
</activation>
<modules>
<module>integration-tests</module>
</modules>
</profile>
</profiles>
</project>

0 comments on commit de77974

Please sign in to comment.