pom.xml 1.3 KB
Newer Older
1 2 3 4 5 6 7 8
<?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>com.squareup.retrofit</groupId>
    <artifactId>retrofit-converters</artifactId>
9
    <version>2.0.0-beta1</version>
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
    <relativePath>../pom.xml</relativePath>
  </parent>

  <artifactId>converter-gson</artifactId>
  <name>Converter: Gson</name>

  <dependencies>
    <dependency>
      <groupId>com.squareup.retrofit</groupId>
      <artifactId>retrofit</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>com.google.code.gson</groupId>
      <artifactId>gson</artifactId>
    </dependency>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
33 34
      <groupId>com.squareup.okhttp</groupId>
      <artifactId>mockwebserver</artifactId>
35 36 37
      <scope>test</scope>
    </dependency>
    <dependency>
38 39
      <groupId>org.assertj</groupId>
      <artifactId>assertj-core</artifactId>
40 41 42 43
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>