Skip to content

Commit

Permalink
Avoid publishing support modules in Maven Central (#46)
Browse files Browse the repository at this point in the history
* Avoid publishing support modules in Maven Central

* Update pom.xml
  • Loading branch information
gastaldi authored Sep 9, 2024
1 parent e2dcbe6 commit 81b27fe
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
<module>deployment</module>
<module>runtime</module>
<module>commands</module>
<module>integration-tests</module>
<module>docs</module>
</modules>
<scm>
<connection>scm:git:[email protected]:quarkiverse/quarkus-discord4j.git</connection>
Expand Down Expand Up @@ -64,6 +62,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 81b27fe

Please sign in to comment.