Skip to content

Commit

Permalink
Merge pull request #318 from quarkiverse/move_docs_module
Browse files Browse the repository at this point in the history
Avoid publishing support modules in Maven Central
  • Loading branch information
SlyngDK authored Oct 5, 2024
2 parents 8210ecf + 2fc8ab1 commit a6eda4a
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
<modules>
<module>deployment</module>
<module>runtime</module>
<module>docs</module>
</modules>
<scm>
<connection>scm:git:git@github.com:quarkiverse/quarkus-logging-json.git</connection>
Expand Down Expand Up @@ -191,6 +190,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>perform-release</id>
<activation>
Expand Down

0 comments on commit a6eda4a

Please sign in to comment.