|
20 | 20 |
|
21 | 21 | <groupId>com.bernardomg.tabletop</groupId> |
22 | 22 | <artifactId>dice-cli</artifactId> |
23 | | - <version>1.1.0</version> |
| 23 | + <version>1.1.1</version> |
24 | 24 | <packaging>jar</packaging> |
25 | 25 |
|
26 | 26 | <name>Dice Notation Tools CLI</name> |
|
30 | 30 |
|
31 | 31 | <licenses> |
32 | 32 | <license> |
33 | | - <name>MIT License</name> |
34 | | - <url>http://www.opensource.org/licenses/mit-license.php</url> |
| 33 | + <name>Apache v2 License</name> |
| 34 | + <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> |
35 | 35 | <distribution>repo</distribution> |
36 | 36 | </license> |
37 | 37 | </licenses> |
|
174 | 174 | <!-- ============================================== --> |
175 | 175 | <!-- =========== DEPENDENCIES VERSIONS ============ --> |
176 | 176 | <!-- ============================================== --> |
177 | | - <dice.version>2.0.2</dice.version> |
| 177 | + <dice.version>2.0.4</dice.version> |
178 | 178 | <guava.version>29.0-jre</guava.version> |
179 | 179 | <junit.jupiter.version>5.6.2</junit.jupiter.version> |
180 | | - <mockito.version>3.3.3</mockito.version> |
181 | | - <picocli.version>4.4.0</picocli.version> |
| 180 | + <mockito.version>3.5.13</mockito.version> |
| 181 | + <picocli.version>4.5.1</picocli.version> |
182 | 182 | <log4j.version>2.13.3</log4j.version> |
183 | 183 | <slf4j.version>1.7.30</slf4j.version> |
184 | 184 | <spring.boot.version>2.3.1.RELEASE</spring.boot.version> |
|
403 | 403 | <configuration> |
404 | 404 | <!-- The customized rules file --> |
405 | 405 | <configLocation>${project.basedir}/src/config/checkstyle/checkstyle-rules.xml</configLocation> |
406 | | - <!-- Excludes generated code --> |
407 | | - <excludes>**/generated/**/*</excludes> |
408 | 406 | </configuration> |
409 | 407 | </plugin> |
410 | 408 | <plugin> |
411 | 409 | <!-- FindBugs --> |
412 | 410 | <!-- Checks for patterns which are prone to errors --> |
413 | 411 | <groupId>org.codehaus.mojo</groupId> |
414 | 412 | <artifactId>findbugs-maven-plugin</artifactId> |
415 | | - <configuration> |
416 | | - <!-- Exclusion patterns --> |
417 | | - <excludeFilterFile>${project.basedir}/src/config/findbugs/findbugs-exclude.xml</excludeFilterFile> |
418 | | - </configuration> |
419 | | - </plugin> |
420 | | - <plugin> |
421 | | - <!-- Javadoc --> |
422 | | - <!-- Generates the javadocs --> |
423 | | - <groupId>org.apache.maven.plugins</groupId> |
424 | | - <artifactId>maven-javadoc-plugin</artifactId> |
425 | | - <configuration> |
426 | | - <sourceFileExcludes> |
427 | | - <!-- Excludes generated code --> |
428 | | - <exclude>**/generated/**/*</exclude> |
429 | | - </sourceFileExcludes> |
430 | | - </configuration> |
431 | 413 | </plugin> |
432 | 414 | <plugin> |
433 | 415 | <!-- PMD --> |
|
439 | 421 | <!-- The customized rules file --> |
440 | 422 | <ruleset>${project.basedir}/src/config/pmd/pmd-rules.xml</ruleset> |
441 | 423 | </rulesets> |
442 | | - <excludes> |
443 | | - <!-- Excludes generated code --> |
444 | | - <exclude>**/generated/**/*</exclude> |
445 | | - </excludes> |
446 | 424 | </configuration> |
447 | 425 | </plugin> |
448 | 426 | </plugins> |
|
0 commit comments