Skip to content

Commit

Permalink
Avoid publishing support modules in Maven Central (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi authored Sep 9, 2024
1 parent 5b3f2da commit 2b57488
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.quarkiverse</groupId>
Expand All @@ -16,7 +15,6 @@
<modules>
<module>deployment</module>
<module>runtime</module>
<module>docs</module>
</modules>
<scm>
<connection>scm:git:[email protected]:quarkiverse/quarkus-semantic-kernel.git</connection>
Expand Down Expand Up @@ -70,6 +68,18 @@
</pluginManagement>
</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>
Expand Down

0 comments on commit 2b57488

Please sign in to comment.