Skip to content

Commit e537c1c

Browse files
committed
integration skip profile for github actions
1 parent f363a31 commit e537c1c

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

pom.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,23 @@
104104
</build>
105105

106106
<profiles>
107+
<profile>
108+
<id>no-integration-tests</id>
109+
<build>
110+
<plugins>
111+
<plugin>
112+
<groupId>org.apache.maven.plugins</groupId>
113+
<artifactId>maven-surefire-plugin</artifactId>
114+
<!--<version>2.19.1</version> -->
115+
<configuration>
116+
<excludes>
117+
<exclude>**/*IT.java</exclude>
118+
</excludes>
119+
</configuration>
120+
</plugin>
121+
</plugins>
122+
</build>
123+
</profile>
107124
<profile>
108125
<id>release</id>
109126
<build>

0 commit comments

Comments
 (0)