Skip to content

Commit

Permalink
Merge pull request #258 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
yrodiere authored Sep 10, 2024
2 parents b68ded2 + 2ffd8d7 commit a07c4cf
Showing 1 changed file with 26 additions and 6 deletions.
32 changes: 26 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,10 @@
<name>Quarkus - Hibernate Search Extras - Parent</name>
<modules>
<module>hibernate-search-orm-elasticsearch-aws</module>
<module>docs</module>
<module>integration-tests</module>
</modules>
<scm>
<connection>scm:git:[email protected]:quarkiverse/quarkus-hibernate-search-extras.git</connection>
<developerConnection>scm:git:[email protected]:quarkiverse/quarkus-hibernate-search-extras.git
</developerConnection>
<developerConnection>scm:git:[email protected]:quarkiverse/quarkus-hibernate-search-extras.git</developerConnection>
<url>https://github.com/quarkiverse/quarkus-hibernate-search-extras</url>
<tag>HEAD</tag>
</scm>
Expand Down Expand Up @@ -115,8 +112,7 @@
<goal>extension-descriptor</goal>
</goals>
<configuration>
<deployment>${project.groupId}:${project.artifactId}-deployment:${project.version}
</deployment>
<deployment>${project.groupId}:${project.artifactId}-deployment:${project.version}</deployment>
</configuration>
</execution>
</executions>
Expand Down Expand Up @@ -165,6 +161,30 @@
<profiles>
<!-- The profiles `skippingAllTests` and `skippingIntegrationTests` are currently duplicates,
as one can't trigger the profile activation on either/or property -->
<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>
<profile>
<id>skippingAllTests</id>
<activation>
Expand Down

0 comments on commit a07c4cf

Please sign in to comment.