pom.xml 1.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
<?xml version="1.0" encoding="UTF-8"?>

<!--
  ~ Copyright 2013 Square, Inc.
  -->

<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>
J
Jake Wharton 已提交
11
    <groupId>com.squareup.retrofit2</groupId>
12
    <artifactId>retrofit-converters</artifactId>
13
    <version>2.3.0-SNAPSHOT</version>
14 15 16 17 18 19 20 21
    <relativePath>../pom.xml</relativePath>
  </parent>

  <artifactId>converter-wire</artifactId>
  <name>Converter: Wire Protocol Buffers</name>

  <dependencies>
    <dependency>
J
Jake Wharton 已提交
22
      <groupId>${project.groupId}</groupId>
23 24 25 26 27 28
      <artifactId>retrofit</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>com.squareup.wire</groupId>
      <artifactId>wire-runtime</artifactId>
29 30 31 32 33 34 35
      <exclusions>
        <!-- Make sure OkHttp's transitive version wins (itself transitive from Retrofit). -->
        <exclusion>
          <groupId>com.squareup.okio</groupId>
          <artifactId>okio</artifactId>
        </exclusion>
      </exclusions>
36
    </dependency>
37 38 39 40 41
    <dependency>
      <groupId>com.google.code.findbugs</groupId>
      <artifactId>jsr305</artifactId>
      <scope>provided</scope>
    </dependency>
42 43 44 45 46 47 48

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
J
Jake Wharton 已提交
49
      <groupId>com.squareup.okhttp3</groupId>
50
      <artifactId>mockwebserver</artifactId>
51 52 53
      <scope>test</scope>
    </dependency>
    <dependency>
54 55
      <groupId>org.assertj</groupId>
      <artifactId>assertj-core</artifactId>
56 57 58 59
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>