[KYUUBI #4969] [TEST] Run JUnit tests on beeline module

### _Why are the changes needed?_

- add `maven-surefire-plugin` to beeline module for running JUnit tests.

### _How was this patch tested?_
- [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible

- [ ] Add screenshots for manual tests if appropriate

- [ ] [Run test](https://kyuubi.readthedocs.io/en/master/develop_tools/testing.html#running-tests) locally before make a pull request

Closes #4969 from bowenliang123/scalatest-junit.

Closes #4969

995c83c07 [liangbowen] surefire on beeline

Authored-by: liangbowen <liangbowen@gf.com.cn>
Signed-off-by: liangbowen <liangbowen@gf.com.cn>
This commit is contained in:
liangbowen 2023-06-16 20:22:45 +08:00
parent 4deb98cd42
commit de0258be79

View File

@ -223,6 +223,14 @@
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>${skipTests}</skipTests>
</configuration>
</plugin>
</plugins>
<outputDirectory>target/classes</outputDirectory>
<testOutputDirectory>target/test-classes</testOutputDirectory>