Skip to content

Commit 9602f3b

Browse files
committed
Added Jacoco, updated dependencies
1 parent e163764 commit 9602f3b

File tree

1 file changed

+30
-4
lines changed

1 file changed

+30
-4
lines changed

pom.xml

Lines changed: 30 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
<slf4j.version>1.7.25</slf4j.version>
3333
<jsf.version>2.2.14</jsf.version>
3434
<hibernate.version>5.2.10.Final</hibernate.version>
35+
<jacoco.version>0.7.9</jacoco.version>
3536
</properties>
3637

3738
<dependencyManagement>
@@ -121,7 +122,7 @@
121122
<dependency>
122123
<groupId>com.cedarsoftware</groupId>
123124
<artifactId>json-io</artifactId>
124-
<version>4.9.12</version>
125+
<version>4.10.0</version>
125126
</dependency>
126127
<dependency>
127128
<groupId>org.apache.commons</groupId>
@@ -134,6 +135,11 @@
134135
<version>4.12</version>
135136
<scope>test</scope>
136137
</dependency>
138+
<dependency>
139+
<groupId>org.jacoco</groupId>
140+
<artifactId>jacoco-maven-plugin</artifactId>
141+
<version>${jacoco.version}</version>
142+
</dependency>
137143
</dependencies>
138144
</dependencyManagement>
139145

@@ -161,14 +167,34 @@
161167
</execution>
162168
</executions>
163169
</plugin>
170+
<plugin>
171+
<groupId>org.jacoco</groupId>
172+
<artifactId>jacoco-maven-plugin</artifactId>
173+
<version>${jacoco.version}</version>
174+
<executions>
175+
<execution>
176+
<id>default-prepare-agent</id>
177+
<goals>
178+
<goal>prepare-agent</goal>
179+
</goals>
180+
</execution>
181+
<execution>
182+
<id>default-report</id>
183+
<phase>prepare-package</phase>
184+
<goals>
185+
<goal>report</goal>
186+
</goals>
187+
</execution>
188+
</executions>
189+
</plugin>
164190
</plugins>
165191

166192
<pluginManagement>
167193
<plugins>
168194
<plugin>
169195
<groupId>org.apache.maven.plugins</groupId>
170196
<artifactId>maven-compiler-plugin</artifactId>
171-
<version>3.6.1</version>
197+
<version>3.6.2</version>
172198
<configuration>
173199
<source>1.8</source>
174200
<target>1.8</target>
@@ -203,7 +229,7 @@
203229
<plugin>
204230
<groupId>org.owasp</groupId>
205231
<artifactId>dependency-check-maven</artifactId>
206-
<version>2.1.0</version>
232+
<version>2.1.1</version>
207233
<configuration>
208234
<skipProvidedScope>true</skipProvidedScope>
209235
<skipRuntimeScope>true</skipRuntimeScope>
@@ -219,7 +245,7 @@
219245
<plugin>
220246
<groupId>org.codehaus.mojo</groupId>
221247
<artifactId>findbugs-maven-plugin</artifactId>
222-
<version>3.0.4</version>
248+
<version>3.0.5</version>
223249
<configuration>
224250
<findbugsXmlOutput>true</findbugsXmlOutput>
225251
<xmlOutput>true</xmlOutput>

0 commit comments

Comments
 (0)