pom.xml 1.9 KB
Newer Older
F
fabienric 已提交
1 2 3 4 5 6
<?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>
J
Jake Wharton 已提交
7
    <groupId>com.squareup.retrofit2</groupId>
F
fabienric 已提交
8
    <artifactId>retrofit-converters</artifactId>
J
Jake Wharton 已提交
9
    <version>2.7.2-SNAPSHOT</version>
F
fabienric 已提交
10 11 12 13 14 15 16 17
    <relativePath>../pom.xml</relativePath>
  </parent>

  <artifactId>converter-simplexml</artifactId>
  <name>Converter: SimpleXML</name>

  <dependencies>
    <dependency>
J
Jake Wharton 已提交
18
      <groupId>${project.groupId}</groupId>
F
fabienric 已提交
19 20 21 22 23 24 25
      <artifactId>retrofit</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>org.simpleframework</groupId>
      <artifactId>simple-xml</artifactId>
    </dependency>
26 27 28 29 30
    <dependency>
      <groupId>com.google.code.findbugs</groupId>
      <artifactId>jsr305</artifactId>
      <scope>provided</scope>
    </dependency>
F
fabienric 已提交
31 32 33 34 35 36 37

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
J
Jake Wharton 已提交
38
      <groupId>com.squareup.okhttp3</groupId>
39
      <artifactId>mockwebserver</artifactId>
F
fabienric 已提交
40 41 42
      <scope>test</scope>
    </dependency>
    <dependency>
43 44
      <groupId>org.assertj</groupId>
      <artifactId>assertj-core</artifactId>
F
fabienric 已提交
45 46 47
      <scope>test</scope>
    </dependency>
  </dependencies>
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>
            <manifestEntries>
              <Automatic-Module-Name>retrofit2.converter.simplexml</Automatic-Module-Name>
            </manifestEntries>
          </archive>
        </configuration>
      </plugin>
    </plugins>
  </build>
F
fabienric 已提交
64
</project>