Skip to content

Commit

Permalink
Merge pull request #279 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
edeweerd1A authored Oct 24, 2024
2 parents 02b47e3 + 083dff0 commit 007ae74
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 3 deletions.
2 changes: 1 addition & 1 deletion integration-test/pom.xml → integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<modelVersion>4.0.0</modelVersion>

<name>Splunk logging extension - Integration tests</name>
<artifactId>quarkus-logging-splunk-integration-test</artifactId>
<artifactId>quarkus-logging-splunk-integration-tests</artifactId>

<dependencies>
<dependency>
Expand Down
17 changes: 15 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@
<module>test-utils</module>
<module>runtime</module>
<module>deployment</module>
<module>integration-test</module>
<module>docs</module>
</modules>
<repositories>
<repository>
Expand Down Expand Up @@ -152,4 +150,19 @@
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>docs</id>
<activation>
<property>
<name>performRelease</name>
<value>!true</value>
</property>
</activation>
<modules>
<module>docs</module>
<module>integration-tests</module>
</modules>
</profile>
</profiles>
</project>

0 comments on commit 007ae74

Please sign in to comment.