pom.xml 707 字节
Newer Older
1 2
<?xml version="1.0" encoding="UTF-8"?>

3
<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">
4 5 6
  <modelVersion>4.0.0</modelVersion>

  <parent>
7 8
    <groupId>com.squareup.retrofit</groupId>
    <artifactId>parent</artifactId>
9
    <version>1.3.0</version>
10 11 12
    <relativePath>../pom.xml</relativePath>
  </parent>

13 14
  <groupId>com.squareup.retrofit.samples</groupId>
  <artifactId>parent</artifactId>
15
  <name>Samples</name>
16 17 18
  <packaging>pom</packaging>

  <modules>
19
    <module>github-client</module>
J
Jake Wharton 已提交
20
    <module>mock-github-client</module>
21 22
  </modules>
</project>