blob: 07f792b0d2640f39e8ae4178951b1e8bf23b9073 [file] [log] [blame]
nathanmittlerffc18f62014-10-28 16:14:27 -07001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4
5 <parent>
6 <groupId>com.google.net.stubby</groupId>
7 <artifactId>stubby-parent</artifactId>
nathanmittler66ce6672014-12-15 09:51:28 -08008 <version>0.1.0-SNAPSHOT</version>
nathanmittlerffc18f62014-10-28 16:14:27 -07009 </parent>
10
11 <artifactId>stubby-netty</artifactId>
12 <packaging>jar</packaging>
13
14 <name>Stubby/Netty</name>
15
16 <dependencies>
17 <dependency>
18 <groupId>${project.groupId}</groupId>
19 <artifactId>stubby-core</artifactId>
20 <version>${project.version}</version>
21 </dependency>
22 <dependency>
23 <groupId>io.netty</groupId>
24 <artifactId>netty-codec-http2</artifactId>
25 </dependency>
26 <dependency>
27 <groupId>com.twitter</groupId>
28 <artifactId>hpack</artifactId>
29 </dependency>
30
31 <dependency>
32 <groupId>${project.groupId}</groupId>
33 <artifactId>stubby-core</artifactId>
34 <type>test-jar</type>
35 <version>${project.version}</version>
36 <scope>test</scope>
37 </dependency>
38 <dependency>
39 <groupId>${project.groupId}</groupId>
40 <artifactId>stubby-testing</artifactId>
41 <version>${project.version}</version>
42 <scope>test</scope>
43 </dependency>
44 <dependency>
45 <groupId>junit</groupId>
46 <artifactId>junit</artifactId>
47 <scope>test</scope>
48 </dependency>
49 <dependency>
50 <groupId>org.mockito</groupId>
51 <artifactId>mockito-core</artifactId>
52 <scope>test</scope>
53 </dependency>
54 </dependencies>
nathanmittler70341df2014-12-05 15:12:53 -080055
56 <build>
57 <plugins>
58 <!-- Skip the sniffer plugin for Netty. -->
59 <plugin>
60 <groupId>org.codehaus.mojo</groupId>
61 <artifactId>animal-sniffer-maven-plugin</artifactId>
62 <executions>
63 <execution>
64 <id>check-java-version</id>
65 <phase>verify</phase>
66 <goals>
67 <goal>check</goal>
68 </goals>
69 <configuration>
70 <skip>true</skip>
71 </configuration>
72 </execution>
73 </executions>
74 </plugin>
75 </plugins>
76 </build>
nathanmittlerffc18f62014-10-28 16:14:27 -070077</project>