|
57 | 57 | <version.maven.plugin.dependency>2.8</version.maven.plugin.dependency> |
58 | 58 | <version.maven.plugin.xml-format>3.0.7</version.maven.plugin.xml-format> |
59 | 59 | <version.maven.plugin.fmt>2.2.0</version.maven.plugin.fmt> |
| 60 | + <version.maven.plugin.coveralls>4.3.0</version.maven.plugin.coveralls> |
| 61 | + <version.maven.plugin.jacoco>0.8.8</version.maven.plugin.jacoco> |
60 | 62 | </properties> |
61 | 63 | <modules> |
62 | 64 | <module>astra-sdk</module> |
|
82 | 84 |
|
83 | 85 | <!-- Working with JSON --> |
84 | 86 | <dependency> |
85 | | - <groupId>com.fasterxml.jackson.core</groupId> |
86 | | - <artifactId>jackson-core</artifactId> |
87 | | - <version>${jackson.version}</version> |
88 | | - </dependency> |
89 | | - <dependency> |
90 | | - <groupId>com.fasterxml.jackson.core</groupId> |
91 | | - <artifactId>jackson-annotations</artifactId> |
92 | | - <version>${jackson.version}</version> |
93 | | - </dependency> |
94 | | - <dependency> |
95 | | - <groupId>com.fasterxml.jackson.core</groupId> |
96 | | - <artifactId>jackson-databind</artifactId> |
| 87 | + <groupId>com.fasterxml.jackson</groupId> |
| 88 | + <artifactId>jackson-bom</artifactId> |
97 | 89 | <version>${jackson.version}</version> |
| 90 | + <scope>import</scope> |
| 91 | + <type>pom</type> |
98 | 92 | </dependency> |
99 | 93 | <dependency> |
100 | 94 | <groupId>org.everit.json</groupId> |
|
396 | 390 | <encoding>UTF-8</encoding> |
397 | 391 | </configuration> |
398 | 392 | </plugin> |
| 393 | + <!-- Coveralls.io --> |
| 394 | + <plugin> |
| 395 | + <groupId>org.eluder.coveralls</groupId> |
| 396 | + <artifactId>coveralls-maven-plugin</artifactId> |
| 397 | + <version>${version.maven.plugin.coveralls}</version> |
| 398 | + <configuration> |
| 399 | + <repoToken>7s9Lof8PakG3o8NftCupedDbnNegwN1dS</repoToken> |
| 400 | + </configuration> |
| 401 | + <dependencies> |
| 402 | + <dependency> |
| 403 | + <groupId>javax.xml.bind</groupId> |
| 404 | + <artifactId>jaxb-api</artifactId> |
| 405 | + <version>2.3.1</version> |
| 406 | + </dependency> |
| 407 | + </dependencies> |
| 408 | + </plugin> |
| 409 | + |
| 410 | + <plugin> |
| 411 | + <groupId>org.jacoco</groupId> |
| 412 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 413 | + <version>${version.maven.plugin.jacoco}</version> |
| 414 | + <executions> |
| 415 | + <execution> |
| 416 | + <id>default-prepare-agent</id> |
| 417 | + <goals> |
| 418 | + <goal>prepare-agent</goal> |
| 419 | + </goals> |
| 420 | + </execution> |
| 421 | + <execution> |
| 422 | + <id>default-prepare-agent-integration</id> |
| 423 | + <goals> |
| 424 | + <goal>prepare-agent-integration</goal> |
| 425 | + </goals> |
| 426 | + </execution> |
| 427 | + <execution> |
| 428 | + <id>default-report</id> |
| 429 | + <goals> |
| 430 | + <goal>report</goal> |
| 431 | + </goals> |
| 432 | + </execution> |
| 433 | + <execution> |
| 434 | + <id>default-report-integration</id> |
| 435 | + <goals> |
| 436 | + <goal>report-integration</goal> |
| 437 | + </goals> |
| 438 | + </execution> |
| 439 | + </executions> |
| 440 | + </plugin> |
399 | 441 | </plugins> |
400 | | - </build> |
| 442 | + </build> |
401 | 443 |
|
402 | 444 | <!-- Required for the dgs generator --> |
403 | 445 | <repositories> |
|
0 commit comments