Skip to content

Commit

Permalink
fix(pom): exclude integration-tests and docs from maven publication
Browse files Browse the repository at this point in the history
Fixes coming from quarkus-logging-splunk.
  • Loading branch information
edeweerd1A committed Nov 25, 2024
1 parent 119cc2a commit c55a0fb
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
<module>impl</module>
<module>deployment</module>
<module>runtime</module>
<module>docs</module>
</modules>
<scm>
<connection>scm:git:[email protected]:quarkiverse/quarkus-kafka-streams-processor.git</connection>
Expand Down Expand Up @@ -132,15 +131,15 @@
</build>
<profiles>
<profile>
<id>it</id>
<id>not-to-release</id>
<activation>
<property>
<name>performRelease</name>
<value>!true</value>
<name>!performRelease</name>
</property>
</activation>
<modules>
<module>integration-tests</module>
<module>docs</module>
</modules>
</profile>
<profile>
Expand Down

0 comments on commit c55a0fb

Please sign in to comment.