pcap4j-test-coverage
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.pcap4j</groupId>
<artifactId>pcap4j-test-coverage</artifactId>
<version>1.8.2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (C) 2015 Pcap4J.org -->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>pcap4j-test-coverage</artifactId>
<packaging>jar</packaging>
<name>Pcap4J Test Coverage</name>
<description>The dummy module to measure test coverage of Pcap4J.</description>
<parent>
<groupId>org.pcap4j</groupId>
<artifactId>pcap4j</artifactId>
<version>1.8.2</version>
</parent>
<profiles>
<profile>
<id>test-coverage</id>
<dependencies>
<dependency>
<groupId>org.pcap4j</groupId>
<artifactId>pcap4j-core</artifactId>
</dependency>
<dependency>
<groupId>org.pcap4j</groupId>
<artifactId>pcap4j-packetfactory-static</artifactId>
</dependency>
<dependency>
<groupId>org.pcap4j</groupId>
<artifactId>pcap4j-packetfactory-propertiesbased</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<id>report-aggregate</id>
<phase>verify</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
</execution>
</executions>
<configuration>
<outputDirectory>${project.reporting.outputDirectory}/jacoco</outputDirectory>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>