<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <!-- This module was also published with a richer model, Gradle metadata,  -->
  <!-- which should be used instead. Do not delete the following line which  -->
  <!-- is to indicate to Gradle or any Gradle module metadata file consumer  -->
  <!-- that they should prefer consuming it instead. -->
  <!-- do_not_remove: published-with-gradle-metadata -->
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.grab.grazel</groupId>
  <artifactId>grazel-gradle-plugin</artifactId>
  <version>0.3.0</version>
  <name>grazel-gradle-plugin</name>
  <description>A Gradle plugin to automate Bazel migration for Android projects</description>
  <url>https://grab.github.io/Grazel/</url>
  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>https://raw.githubusercontent.com/grab/Grazel/master/LICENSE.md</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>arunkumar9t2</id>
      <name>Arunkumar</name>
      <email>hi@arunkumar.dev</email>
    </developer>
    <developer>
      <id>roscrazy</id>
      <name>Minh Nguyen</name>
      <email>minhnguyen.gtvt@gmail.com</email>
    </developer>
    <developer>
      <id>minkuan88</id>
      <name>Min Kuan Lim</name>
      <email>minkuan88@hotmail.com</email>
    </developer>
  </developers>
  <scm>
    <connection>git@github.com:grab/Grazel.git</connection>
    <developerConnection>git@github.com:grab/Grazel.git</developerConnection>
    <url>https://grab.github.io/Grazel/</url>
  </scm>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>org.jetbrains.kotlin</groupId>
        <artifactId>kotlin-bom</artifactId>
        <version>1.4.31</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>org.jetbrains.kotlin</groupId>
      <artifactId>kotlin-gradle-plugin</artifactId>
      <version>1.4.31</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>com.android.tools.build</groupId>
      <artifactId>gradle</artifactId>
      <version>4.1.3</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
      <version>29.0-jre</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>com.jakewharton.picnic</groupId>
      <artifactId>picnic</artifactId>
      <version>0.4.0</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>com.google.dagger</groupId>
      <artifactId>dagger</artifactId>
      <version>2.33</version>
      <scope>runtime</scope>
    </dependency>
  </dependencies>
</project>
