Skip to content

Commit

Permalink
add skipTests, skipITs, skipUTs profiles
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemGet committed Dec 23, 2024
1 parent 8386369 commit a17b9d3
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eo-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -299,8 +299,8 @@ SOFTWARE.
<plugin>
<artifactId>maven-invoker-plugin</artifactId>
<configuration combine.self="override">
<skipInstallation>${skipTests}</skipInstallation>
<skipInvocation>${skipTests}</skipInvocation>
<skipInstallation>${skipITs}</skipInstallation>
<skipInvocation>${skipITs}</skipInvocation>
<pomExcludes/>
</configuration>
</plugin>
Expand Down
34 changes: 34 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,40 @@ SOFTWARE.
</pluginManagement>
</build>
<profiles>
<profile>
<id>skipTests</id>
<activation>
<property>
<name>skipTests</name>
</property>
</activation>
<properties>
<skipITs>true</skipITs>
<skipUTs>true</skipUTs>
</properties>
</profile>
<profile>
<id>skipITs</id>
<activation>
<property>
<name>skipITs</name>
</property>
</activation>
<properties>
<skipITs>true</skipITs>
</properties>
</profile>
<profile>
<id>skipUTs</id>
<activation>
<property>
<name>skipUTs</name>
</property>
</activation>
<properties>
<skipUTs>true</skipUTs>
</properties>
</profile>
<profile>
<id>qulice</id>
<build>
Expand Down

0 comments on commit a17b9d3

Please sign in to comment.