-
Notifications
You must be signed in to change notification settings - Fork 13
/
pom.xml
109 lines (95 loc) · 3.51 KB
/
pom.xml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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.torodb</groupId>
<artifactId>parent-pom</artifactId>
<version>1.0.1</version>
</parent>
<groupId>com.torodb.mongowp</groupId>
<artifactId>mongowp-parent</artifactId>
<version>0.50.2</version>
<packaging>pom</packaging>
<modules>
<module>server</module>
<module>client</module>
<module>mongowp-core</module>
<module>bson</module>
<module>reporting</module>
</modules>
<name>MongoWP Parent</name>
<description>
mongowp is a Java layer that enables the development of server-side MongoDB wire protocol implementations.
Any application designed to act as a mongo server could rely on this layer to implement the wire protocol.
Examples of such applications may be mongo proxies, connection poolers or in-memory implementations,
to name a few.
</description>
<organization>
<name>8Kdata Technology</name>
<url>www.8kdata.com</url>
</organization>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://opensource.org/licenses/Apache-2.0</url>
</license>
</licenses>
<scm>
<connection>scm:git:[email protected]:torodb/mongowp.git</connection>
<developerConnection>scm:git:[email protected]:torodb/mongowp.git</developerConnection>
<url>[email protected]:torodb/mongowp.git</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/torodb/mongowp/issues</url>
</issueManagement>
<properties>
<mongowp.buildtools.version>0.50.1</mongowp.buildtools.version>
<netty.version>4.0.42.Final</netty.version>
<license.header.license>apache20</license.header.license>
<license.header.project.name>MongoWP</license.header.project.name>
<license.header.project.inceptionYear>2014</license.header.project.inceptionYear>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport</artifactId>
<version>${netty.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>OSSRH</id>
<url>https://oss.sonatype.org/content/groups/public</url>
</repository>
</repositories>
</project>