forked from timboudreau/netty-http-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
38 lines (38 loc) · 1.46 KB
/
pom.xml
File metadata and controls
38 lines (38 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.mastfrog</groupId>
<artifactId>mastfrog-parent</artifactId>
<version>1.6.4</version>
<relativePath/>
</parent>
<artifactId>netty-http-client-modules</artifactId>
<name>Netty Http Client (modules)</name>
<packaging>pom</packaging>
<modules>
<module>netty-http-client</module>
<module>netty-http-test-harness</module>
<module>netty-http-client-tests</module>
</modules>
<url>https://github.com/timboudreau/netty-http-client</url>
<scm>
<url>https://github.com/timboudreau/netty-http-client</url>
<connection>scm:git:https://github.com/timboudreau/netty-http-client.git</connection>
<developerConnection>git@github.com/timboudreau/netty-http-client.git</developerConnection>
</scm>
<licenses>
<license>
<name>MIT</name>
<url>http://opensource.org/licenses/MIT</url>
</license>
</licenses>
<developers>
<developer>
<name>Tim Boudreau</name>
<email>tim@timboudreau.com</email>
<url>https://timboudreau.com</url>
</developer>
</developers>
</project>