approval-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.nikolavp</groupId>
<artifactId>approval-core</artifactId>
<version>0.3</version>
</dependency><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>approval-core</artifactId>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<parent>
<groupId>com.github.nikolavp</groupId>
<artifactId>approval</artifactId>
<version>0.3</version>
<relativePath>..</relativePath>
</parent>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.3.3</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.6</version>
<configuration>
<instrumentation>
<ignores>
<ignore>com.github.approval.reporters.*Reporters*</ignore>
<ignore>com.github.approval.utils.*ExecutableExistsOnPath*</ignore>
</ignores>
<excludes>
<exclude>com/github/approval/reporters/*Reporters*.class</exclude>
<exclude>com/github/approval/utils/*ExecutableExistsOnPath*.class</exclude>
</excludes>
</instrumentation>
</configuration>
</plugin>
</plugins>
</build>
</project>