1<?xml version="1.0" encoding="UTF-8"?>
2
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  <modelVersion>4.0.0</modelVersion>
5
6  <parent>
7    <groupId>com.squareup.okio</groupId>
8    <artifactId>okio-parent</artifactId>
9    <version>1.4.0-SNAPSHOT</version>
10  </parent>
11
12  <artifactId>okio</artifactId>
13  <name>Okio</name>
14
15  <dependencies>
16    <dependency>
17      <groupId>org.codehaus.mojo</groupId>
18      <artifactId>animal-sniffer-annotations</artifactId>
19      <optional>true</optional>
20    </dependency>
21
22    <dependency>
23      <groupId>junit</groupId>
24      <artifactId>junit</artifactId>
25      <scope>test</scope>
26    </dependency>
27  </dependencies>
28
29  <build>
30    <plugins>
31      <plugin>
32        <groupId>org.codehaus.mojo</groupId>
33        <artifactId>animal-sniffer-maven-plugin</artifactId>
34        <version>${animal.sniffer.version}</version>
35        <executions>
36          <execution>
37            <phase>test</phase>
38            <goals>
39              <goal>check</goal>
40            </goals>
41          </execution>
42        </executions>
43        <configuration>
44          <signature>
45            <groupId>org.codehaus.mojo.signature</groupId>
46            <artifactId>java16</artifactId>
47            <version>1.1</version>
48          </signature>
49        </configuration>
50      </plugin>
51    </plugins>
52  </build>
53</project>
54