BUG-632: add initial configuration bits for TCP-MD5
[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-api-cfg</artifactId>
44                 <version>${project.version}</version>
45             </dependency>
46             <dependency>
47                 <groupId>${project.groupId}</groupId>
48                 <artifactId>tcpmd5-jni</artifactId>
49                 <version>${project.version}</version>
50             </dependency>
51             <dependency>
52                 <groupId>${project.groupId}</groupId>
53                 <artifactId>tcpmd5-jni-cfg</artifactId>
54                 <version>${project.version}</version>
55             </dependency>
56             <dependency>
57                 <groupId>${project.groupId}</groupId>
58                 <artifactId>tcpmd5-netty</artifactId>
59                 <version>${project.version}</version>
60             </dependency>
61             <dependency>
62                 <groupId>${project.groupId}</groupId>
63                 <artifactId>tcpmd5-nio</artifactId>
64                 <version>${project.version}</version>
65             </dependency>
66             <dependency>
67                 <groupId>${project.groupId}</groupId>
68                 <artifactId>tcpmd5-jni</artifactId>
69                 <version>${project.version}</version>
70                 <type>nar</type>
71             </dependency>
72             <dependency>
73                 <groupId>${project.groupId}</groupId>
74                 <artifactId>tcpmd5-controller-config</artifactId>
75                 <version>${project.version}</version>
76             </dependency>
77         </dependencies>
78     </dependencyManagement>
79
80     <profiles>
81         <profile>
82             <id>jni</id>
83             <activation>
84                 <activeByDefault>false</activeByDefault>
85             </activation>
86             <modules>
87                 <module>api</module>
88                 <module>api-cfg</module>
89                 <module>jni</module>
90                 <module>jni-cfg</module>
91                 <module>netty</module>
92                 <module>netty-cfg</module>
93                 <module>nio</module>
94             </modules>
95         </profile>
96         <profile>
97             <id>default</id>
98             <activation>
99                 <activeByDefault>true</activeByDefault>
100             </activation>
101             <modules>
102                 <module>api</module>
103                 <module>api-cfg</module>
104                 <module>jni-cfg</module>
105                 <module>netty</module>
106                 <module>netty-cfg</module>
107                 <module>nio</module>
108             </modules>
109         </profile>
110     </profiles>
111 </project>