Skip to content

Commit

Permalink
Merge pull request quarkiverse#104 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
flazarus1A authored Sep 16, 2024
2 parents 927d1bc + cd81d11 commit 1dc7a08
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 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 @@ -86,8 +85,7 @@
<artifactId>protobuf-maven-plugin</artifactId>
<version>0.6.1</version>
<configuration>
<protocArtifact>com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier}
</protocArtifact>
<protocArtifact>com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier}</protocArtifact>
<useArgumentFile>true</useArgumentFile>
</configuration>
</plugin>
Expand Down Expand Up @@ -131,6 +129,18 @@
</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>
Expand All @@ -148,7 +158,6 @@
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemProperties>
Expand Down

0 comments on commit 1dc7a08

Please sign in to comment.