|
40 | 40 | <javax-validation-api.version>2.0.1.Final</javax-validation-api.version> |
41 | 41 | <jakarta-validation-api.version>3.1.1</jakarta-validation-api.version> |
42 | 42 | <junit.version>5.13.4</junit.version> |
| 43 | + <hamcrest.version>1.3</hamcrest.version> |
| 44 | + <mockito.version>4.11.0</mockito.version> |
43 | 45 | <!-- endregion --> |
44 | 46 |
|
45 | 47 | <!-- region Plugin Versions --> |
|
102 | 104 | <artifactId>junit-jupiter-api</artifactId> |
103 | 105 | <scope>test</scope> |
104 | 106 | </dependency> |
| 107 | + <dependency> |
| 108 | + <groupId>org.junit.jupiter</groupId> |
| 109 | + <artifactId>junit-jupiter-params</artifactId> |
| 110 | + <scope>test</scope> |
| 111 | + </dependency> |
| 112 | + <dependency> |
| 113 | + <groupId>org.hamcrest</groupId> |
| 114 | + <artifactId>hamcrest-all</artifactId> |
| 115 | + <version>${hamcrest.version}</version> |
| 116 | + <scope>test</scope> |
| 117 | + </dependency> |
| 118 | + <dependency> |
| 119 | + <groupId>org.mockito</groupId> |
| 120 | + <artifactId>mockito-core</artifactId> |
| 121 | + <version>${mockito.version}</version> |
| 122 | + <scope>test</scope> |
| 123 | + </dependency> |
105 | 124 | <!-- endregion --> |
| 125 | + |
106 | 126 | </dependencies> |
107 | 127 |
|
108 | 128 | <build> |
|
147 | 167 | </execution> |
148 | 168 | </executions> |
149 | 169 | </plugin> |
| 170 | + <plugin> |
| 171 | + <groupId>org.apache.maven.plugins</groupId> |
| 172 | + <artifactId>maven-surefire-plugin</artifactId> |
| 173 | + <version>3.5.4</version> |
| 174 | + <configuration> |
| 175 | + <statelessTestsetReporter implementation="org.apache.maven.plugin.surefire.extensions.junit5.JUnit5Xml30StatelessReporter"> |
| 176 | + <disable>false</disable> |
| 177 | + <version>3.0</version> |
| 178 | + <usePhrasedFileName>false</usePhrasedFileName> |
| 179 | + <usePhrasedTestSuiteClassName>true</usePhrasedTestSuiteClassName> |
| 180 | + <usePhrasedTestCaseClassName>true</usePhrasedTestCaseClassName> |
| 181 | + <usePhrasedTestCaseMethodName>true</usePhrasedTestCaseMethodName> |
| 182 | + </statelessTestsetReporter> |
| 183 | + <consoleOutputReporter implementation="org.apache.maven.plugin.surefire.extensions.junit5.JUnit5ConsoleOutputReporter"> |
| 184 | + <disable>false</disable> |
| 185 | + <encoding>UTF-8</encoding> |
| 186 | + <usePhrasedFileName>false</usePhrasedFileName> |
| 187 | + </consoleOutputReporter> |
| 188 | + <statelessTestsetInfoReporter implementation="org.apache.maven.plugin.surefire.extensions.junit5.JUnit5StatelessTestsetInfoReporter"> |
| 189 | + <disable>false</disable> |
| 190 | + <usePhrasedFileName>false</usePhrasedFileName> |
| 191 | + <usePhrasedClassNameInRunning>true</usePhrasedClassNameInRunning> |
| 192 | + <usePhrasedClassNameInTestCaseSummary>true</usePhrasedClassNameInTestCaseSummary> |
| 193 | + </statelessTestsetInfoReporter> |
| 194 | + </configuration> |
| 195 | + </plugin> |
150 | 196 | <plugin> |
151 | 197 | <groupId>org.apache.maven.plugins</groupId> |
152 | 198 | <artifactId>maven-jar-plugin</artifactId> |
|
0 commit comments