Skip to content

Commit

Permalink
Merge pull request #298
Browse files Browse the repository at this point in the history
* Add IT profile for integration testing in the top level project

* updated pom.xml
  • Loading branch information
Awambeng committed Apr 11, 2024
1 parent bc9e2b4 commit 25ae87d
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -700,6 +700,25 @@
</pluginManagement>
</build>
</profile>
<profile>
<id>IT</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.version}</version>
<configuration>
<testFailureIgnore>false</testFailureIgnore>
<includes>
<include>**/*Test</include>
<include>**/*IT</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<distributionManagement>
Expand Down

0 comments on commit 25ae87d

Please sign in to comment.