Skip to content

Commit 50e991f

Browse files
committed
OK
1 parent 916bdd0 commit 50e991f

File tree

2 files changed

+56
-37
lines changed

2 files changed

+56
-37
lines changed

pom.xml

Lines changed: 55 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@
5757
<version.maven.plugin.dependency>2.8</version.maven.plugin.dependency>
5858
<version.maven.plugin.xml-format>3.0.7</version.maven.plugin.xml-format>
5959
<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>
6062
</properties>
6163
<modules>
6264
<module>astra-sdk</module>
@@ -82,19 +84,11 @@
8284

8385
<!-- Working with JSON -->
8486
<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>
9789
<version>${jackson.version}</version>
90+
<scope>import</scope>
91+
<type>pom</type>
9892
</dependency>
9993
<dependency>
10094
<groupId>org.everit.json</groupId>
@@ -396,8 +390,56 @@
396390
<encoding>UTF-8</encoding>
397391
</configuration>
398392
</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>
399441
</plugins>
400-
</build>
442+
</build>
401443

402444
<!-- Required for the dgs generator -->
403445
<repositories>

stargate-sdk/pom.xml

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -146,30 +146,7 @@
146146
</configuration>
147147
</execution>
148148
</executions>
149-
</plugin>
150-
151-
152-
<plugin>
153-
<groupId>org.jacoco</groupId>
154-
<artifactId>jacoco-maven-plugin</artifactId>
155-
<version>0.8.2</version>
156-
<executions>
157-
<execution>
158-
<goals>
159-
<goal>prepare-agent</goal>
160-
</goals>
161-
</execution>
162-
<!-- attached to Maven test phase -->
163-
<execution>
164-
<id>report</id>
165-
<phase>test</phase>
166-
<goals>
167-
<goal>report</goal>
168-
<goal>prepare-agent</goal>
169-
</goals>
170-
</execution>
171-
</executions>
172-
</plugin>
149+
</plugin>
173150
</plugins>
174151
</build>
175152
</project>

0 commit comments

Comments
 (0)