|
11 | 11 |
|
12 | 12 | <name>${project.groupId}:${project.artifactId}</name> |
13 | 13 | <description>A pricing driven feature toggling library for java</description> |
14 | | - <url>https://github.com/Alex-GF/pricingplans-4j</url> |
| 14 | + <url>https://github.com/isa-group/Pricing4Java</url> |
15 | 15 | <packaging>jar</packaging> |
16 | 16 |
|
17 | 17 | <licenses> |
|
164 | 164 | <dependency> |
165 | 165 | <groupId>org.yaml</groupId> |
166 | 166 | <artifactId>snakeyaml</artifactId> |
167 | | - <version>1.33</version> |
| 167 | + <version>2.3</version> |
168 | 168 | </dependency> |
169 | 169 |
|
170 | 170 | <!-- API, java.xml.bind module --> |
|
190 | 190 | <plugin> |
191 | 191 | <groupId>org.apache.maven.plugins</groupId> |
192 | 192 | <artifactId>maven-gpg-plugin</artifactId> |
| 193 | + <version>3.2.7</version> |
193 | 194 | <executions> |
194 | 195 | <execution> |
195 | 196 | <id>sign-artifacts</id> |
|
225 | 226 | </dependencies> |
226 | 227 | </plugin> |
227 | 228 | <plugin> |
228 | | - <groupId>org.apache.maven.plugins</groupId> |
229 | 229 | <artifactId>maven-surefire-plugin</artifactId> |
230 | | - <version>3.2.5</version> |
| 230 | + <version>3.5.2</version> |
| 231 | + <dependencies> |
| 232 | + <dependency> |
| 233 | + <groupId>me.fabriciorby</groupId> |
| 234 | + <artifactId>maven-surefire-junit5-tree-reporter</artifactId> |
| 235 | + <version>1.4.0</version> |
| 236 | + </dependency> |
| 237 | + </dependencies> |
| 238 | + <configuration> |
| 239 | + <reportFormat>plain</reportFormat> |
| 240 | + <consoleOutputReporter> |
| 241 | + <disable>true</disable> |
| 242 | + </consoleOutputReporter> |
| 243 | + <statelessTestsetInfoReporter |
| 244 | + implementation="org.apache.maven.plugin.surefire.extensions.junit5.JUnit5StatelessTestsetInfoTreeReporter"> |
| 245 | + <printStacktraceOnError>true</printStacktraceOnError> |
| 246 | + <printStacktraceOnFailure>true</printStacktraceOnFailure> |
| 247 | + <printStdoutOnError>true</printStdoutOnError> |
| 248 | + <printStdoutOnFailure>true</printStdoutOnFailure> |
| 249 | + <printStdoutOnSuccess>false</printStdoutOnSuccess> |
| 250 | + <printStderrOnError>true</printStderrOnError> |
| 251 | + <printStderrOnFailure>true</printStderrOnFailure> |
| 252 | + <printStderrOnSuccess>false</printStderrOnSuccess> |
| 253 | + </statelessTestsetInfoReporter> |
| 254 | + </configuration> |
231 | 255 | </plugin> |
232 | 256 | <plugin> |
233 | 257 | <groupId>org.apache.maven.plugins</groupId> |
|
258 | 282 | <plugin> |
259 | 283 | <groupId>org.jacoco</groupId> |
260 | 284 | <artifactId>jacoco-maven-plugin</artifactId> |
261 | | - <version>0.8.11</version> |
| 285 | + <version>0.8.12</version> |
262 | 286 | <executions> |
263 | 287 | <execution> |
264 | 288 | <goals> |
|
0 commit comments