aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorTatu Saloranta <tatu.saloranta@iki.fi>2019-08-24 16:23:24 -0700
committerTatu Saloranta <tatu.saloranta@iki.fi>2019-08-24 16:23:24 -0700
commitb6e6e57aeff72fb6ee5f030faab8972405b1fe47 (patch)
treefd642f7059fec773938d96430557f2b74991f931 /pom.xml
parent5d703fab5d0b2443c6c5ede05aac47c2eb9399b9 (diff)
downloadjackson-databind-b6e6e57aeff72fb6ee5f030faab8972405b1fe47.tar.gz
Add Jacoco; refactor `TokenBuffer` for further work
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml22
1 files changed, 22 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 8b5fe1a91..a992a448b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -111,6 +111,28 @@
<build>
<plugins>
+
+ <plugin>
+ <groupId>org.jacoco</groupId>
+ <artifactId>jacoco-maven-plugin</artifactId>
+ <version>0.8.4</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>prepare-agent</goal>
+ </goals>
+ </execution>
+ <!-- attached to Maven test phase -->
+ <execution>
+ <id>report</id>
+ <phase>test</phase>
+ <goals>
+ <goal>report</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
<!-- Important: enable enforcer plug-in: -->
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>