Skip to content

Commit

Permalink
Avoid publishing support modules in Maven Central (#319)
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi authored Sep 9, 2024
1 parent d71e919 commit 1d0f8c8
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 @@ -17,9 +17,7 @@
<module>client-vertx</module>
<module>deployment</module>
<module>runtime</module>
<module>docs</module>
<module>test-framework</module>
<module>integration-tests</module>
</modules>
<scm>
<connection>scm:git:git@github.com:quarkiverse/quarkus-vault.git</connection>
Expand Down Expand Up @@ -133,4 +131,30 @@
</plugin>
</plugins>
</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 1d0f8c8

Please sign in to comment.