Skip to content

Commit

Permalink
Do not release docs and integration-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi authored Sep 7, 2024
1 parent 048da95 commit 3200ceb
Showing 1 changed file with 26 additions and 2 deletions.
28 changes: 26 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
<modules>
<module>deployment</module>
<module>runtime</module>
<module>docs</module>
<module>integration-tests</module>
</modules>
<scm>
<connection>scm:git:git@github.com:quarkiverse/quarkus-jsch.git</connection>
Expand Down Expand Up @@ -59,4 +57,30 @@
</plugins>
</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>
<property>
<name>performRelease</name>
<value>!true</value>
</property>
</activation>
<modules>
<module>integration-tests</module>
</modules>
</profile>
</profiles>
</project>

0 comments on commit 3200ceb

Please sign in to comment.