<?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">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.wesleyhome</groupId>
        <artifactId>parent</artifactId>
        <version>1.0.2</version>
    </parent>
    <groupId>com.wesleyhome.utilities</groupId>
    <artifactId>common-utilities</artifactId>
    <version>1.0.0</version>
    <properties>
        <module.name>com.wesleyhome.utilities.common</module.name>
    </properties>
    <scm>
        <connection>scm:git:https://github.com/justin-wesley/common-utilities.git</connection>
        <developerConnection>scm:git:https://github.com/justin-wesley/common-utilities.git</developerConnection>
        <url>https://github.com/justin-wesley/common-utilities</url>
      <tag>common-utilities-1.0.0</tag>
  </scm>

    <dependencies>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-params</artifactId>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.assertj</groupId>
            <artifactId>assertj-core</artifactId>
            <scope>test</scope>
        </dependency>

    </dependencies>


</project>