<?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>io.camunda.connector</groupId>
        <artifactId>connector-google-parent</artifactId>
        <version>8.8.3</version>
        <relativePath>../pom.xml</relativePath>
    </parent>

    <name>connector-google-base</name>
    <description>Camunda Connector Google base functionality</description>
    <artifactId>connector-google-base</artifactId>
    <packaging>jar</packaging>

    <licenses>
        <license>
            <name>Camunda Self-Managed Free Edition license</name>
            <url>https://camunda.com/legal/terms/cloud-terms-and-conditions/camunda-cloud-self-managed-free-edition-terms/</url>
        </license>
        <license>
            <name>Camunda Self-Managed Enterprise Edition license</name>
        </license>
    </licenses>

    <dependencies>
        <!-- GOOGLE AUTH API -->
        <dependency>
            <groupId>com.google.oauth-client</groupId>
            <artifactId>google-oauth-client-jetty</artifactId>
        </dependency>
        <dependency>
            <groupId>com.google.auth</groupId>
            <artifactId>google-auth-library-oauth2-http</artifactId>
        </dependency>

        <dependency>
            <groupId>com.google.api-client</groupId>
            <artifactId>google-api-client</artifactId>
        </dependency>

        <!-- GOOGLE API -->
        <dependency>
            <groupId>com.google.apis</groupId>
            <artifactId>google-api-services-drive</artifactId>
        </dependency>

        <dependency>
            <groupId>io.camunda.connector</groupId>
            <artifactId>element-template-generator-core</artifactId>
        </dependency>

    </dependencies>

</project>