BUG-634: add connecticity test suite
[bgpcep.git] / tcp-md5 / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Robert Varga. All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11
12     <modelVersion>4.0.0</modelVersion>
13     <scm>
14         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
15         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
16         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
17         <tag>HEAD</tag>
18     </scm>
19     <parent>
20         <groupId>org.opendaylight.bgpcep</groupId>
21         <artifactId>commons.parent</artifactId>
22         <version>0.3.1-SNAPSHOT</version>
23         <relativePath>../commons/parent</relativePath>
24     </parent>
25     <prerequisites>
26         <maven>3.0.4</maven>
27     </prerequisites>
28
29     <artifactId>tcpmd5-parent</artifactId>
30     <description>RFC2385-enabled sockets components</description>
31     <packaging>pom</packaging>
32     <name>${project.artifactId}</name>
33
34     <dependencyManagement>
35         <dependencies>
36             <dependency>
37                 <groupId>${project.groupId}</groupId>
38                 <artifactId>tcpmd5-api</artifactId>
39                 <version>${project.version}</version>
40             </dependency>
41             <dependency>
42                 <groupId>${project.groupId}</groupId>
43                 <artifactId>tcpmd5-jni</artifactId>
44                 <version>${project.version}</version>
45             </dependency>
46             <dependency>
47                 <groupId>${project.groupId}</groupId>
48                 <artifactId>tcpmd5-netty</artifactId>
49                 <version>${project.version}</version>
50             </dependency>
51             <dependency>
52                 <groupId>${project.groupId}</groupId>
53                 <artifactId>tcpmd5-nio</artifactId>
54                 <version>${project.version}</version>
55             </dependency>
56             <dependency>
57                 <groupId>${project.groupId}</groupId>
58                 <artifactId>tcpmd5-jni</artifactId>
59                 <version>${project.version}</version>
60                 <type>nar</type>
61             </dependency>
62         </dependencies>
63     </dependencyManagement>
64
65     <profiles>
66         <profile>
67             <id>jni</id>
68             <activation>
69                 <activeByDefault>false</activeByDefault>
70             </activation>
71             <modules>
72                 <module>api</module>
73                 <module>jni</module>
74                 <module>netty</module>
75                 <module>nio</module>
76             </modules>
77         </profile>
78         <profile>
79             <id>default</id>
80             <activation>
81                 <activeByDefault>true</activeByDefault>
82             </activation>
83             <modules>
84                 <module>api</module>
85                 <module>netty</module>
86                 <module>nio</module>
87             </modules>
88         </profile>
89     </profiles>
90 </project>