Skip to content

Commit

Permalink
chore: ignore test modules when not testing (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcollovati authored Feb 3, 2024
1 parent 00bf1d4 commit cfd2c32
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion vertx-vaadin-quarkus-extension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
<modules>
<module>deployment</module>
<module>runtime</module>
<module>integration-tests</module>
</modules>
<properties>
<compiler-plugin.version>3.8.1</compiler-plugin.version>
Expand Down Expand Up @@ -89,4 +88,17 @@
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>itests</id>
<activation>
<property>
<name>!skipTests</name>
</property>
</activation>
<modules>
<module>integration-tests</module>
</modules>
</profile>
</profiles>
</project>

0 comments on commit cfd2c32

Please sign in to comment.