ICU-22324 Include all unit tests, move tests needing multiple components

This commit is contained in:
Elango Cheran 2023-09-08 12:17:26 -07:00
parent 9be9ed3231
commit f4227f5d54
3 changed files with 13 additions and 0 deletions

View file

@ -94,6 +94,19 @@
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
<configuration>
<includes>
<!-- Some test files start with "IntlTest...". Many don't fit
the Surefire test file name default patterns. To be safe, use
a catchall pattern instead of the default patterns.
FYI, the default patterns are documented on the website of the
testing plugin:
https://maven.apache.org/surefire/maven-surefire-plugin/examples/inclusion-exclusion.html
-->
<include>**/*.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>