Skip to content

Commit

Permalink
update jackson, add coverage report
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhael-sokolov-rs committed Mar 17, 2024
1 parent 768d9c0 commit b32ae8a
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<java.version>1.8</java.version>
<kotlin.version>1.9.23</kotlin.version>
<jackson.version>2.16.1</jackson.version>
<jackson.version>2.16.2</jackson.version>
<jeasy-random.version>4.3.0</jeasy-random.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
Expand Down Expand Up @@ -100,6 +100,24 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.11</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
<goal>report</goal>
</goals>
</execution>
</executions>
<configuration>
<includes>
<include>ru/sokomishalov/jackson/datatype/soap/**</include>
</includes>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
Expand Down Expand Up @@ -237,4 +255,4 @@
</profile>
</profiles>

</project>
</project>

0 comments on commit b32ae8a

Please sign in to comment.