<?xml version="1.0" encoding="UTF-8"?>
<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">
    <parent>
        <artifactId>metarParser</artifactId>
        <groupId>io.github.mivek</groupId>
        <version>3.0.0</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>metarParser-entities</artifactId>
    <name>metarParser-entities</name>
    <description>Module containing the model of the application.</description>

    <properties>
        <jacoco.coverage.instruction.minimum>0.82</jacoco.coverage.instruction.minimum>
        <jacoco.coverage.branch.minimum>0.90</jacoco.coverage.branch.minimum>
        <jacoco.coverage.complexity.minimum>0.63</jacoco.coverage.complexity.minimum>
    </properties>
    <dependencies>
        <dependency>
            <groupId>io.github.mivek</groupId>
            <artifactId>metarParser-commons</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
        </dependency>
    </dependencies>

</project>
