<?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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.jfrog.access</groupId>
        <artifactId>access-parent</artifactId>
        <version>5.9.0</version>
    </parent>

    <artifactId>access-client-parent</artifactId>
    <packaging>pom</packaging>
    <name>JFrog Access Client Parent</name>

    <modules>
        <module>api</module>
        <module>core</module>
    </modules>

    <dependencies>
        <dependency>
            <groupId>org.jfrog.access</groupId>
            <artifactId>access-common-api</artifactId>
            <type>test-jar</type>
        </dependency>
        <dependency>
            <groupId>org.jfrog.access</groupId>
            <artifactId>access-common-core</artifactId>
            <type>test-jar</type>
        </dependency>

        <!-- grpc-testing needed for making grpc testing easier -->
        <dependency>
            <groupId>io.grpc</groupId>
            <artifactId>grpc-testing</artifactId>
            <scope>test</scope>
        </dependency>

        <!-- junit needed for making grpc testing easier -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

</project>
