Skip to content

Commit

Permalink
Merge pull request #43055 from gastaldi/quarkiverse_docs
Browse files Browse the repository at this point in the history
Avoid publishing the `docs` module in Maven Central
  • Loading branch information
gastaldi authored Sep 6, 2024
2 parents af853db + dbe4ab0 commit f251ab4
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,6 @@
<modules>
<module>deployment</module>
<module>runtime</module>
{#if has-docs-module}
<module>docs</module>
{/if}
</modules>
{#if quarkus.bom}

Expand Down Expand Up @@ -121,4 +118,20 @@
</pluginManagement>
</build>
{/if}
{#if has-docs-module}
<profiles>
<profile>
<id>docs</id>
<activation>
<property>
<name>performRelease</name>
<value>!true</value>
</property>
</activation>
<modules>
<module>docs</module>
</modules>
</profile>
</profiles>
{/if}
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
<modules>
<module>deployment</module>
<module>runtime</module>
<module>docs</module>
</modules>

<scm>
Expand Down Expand Up @@ -70,6 +69,18 @@
</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 f251ab4

Please sign in to comment.