Merge "Bug-730: More tests for testing tools."
[bgpcep.git] / pcep / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  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
11 <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">
12
13
14     <modelVersion>4.0.0</modelVersion>
15     <scm>
16         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
17         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
18         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
19         <tag>HEAD</tag>
20     </scm>
21     <parent>
22         <groupId>org.opendaylight.bgpcep</groupId>
23         <artifactId>commons.parent</artifactId>
24         <version>0.3.1-SNAPSHOT</version>
25         <relativePath>../commons/parent</relativePath>
26     </parent>
27     <prerequisites>
28         <maven>3.0.4</maven>
29     </prerequisites>
30
31     <artifactId>pcep-parent</artifactId>
32     <description>PCEP protocol parent</description>
33     <packaging>pom</packaging>
34     <name>${project.artifactId}</name>
35
36     <modules>
37         <module>api</module>
38         <module>impl</module>
39         <module>spi</module>
40         <module>ietf-stateful02</module>
41         <module>ietf-stateful07</module>
42         <module>testtool</module>
43         <module>topology-api</module>
44         <module>topology-spi</module>
45         <module>topology-provider</module>
46         <module>tunnel-api</module>
47         <module>tunnel-provider</module>
48
49         <module>controller-config</module>
50         <module>segment-routing</module>
51         <module>pcc-mock</module>
52     </modules>
53
54     <dependencyManagement>
55         <dependencies>
56             <dependency>
57                 <groupId>${project.groupId}</groupId>
58                 <artifactId>pcep-api</artifactId>
59                 <version>${project.version}</version>
60             </dependency>
61             <dependency>
62                 <groupId>${project.groupId}</groupId>
63                 <artifactId>pcep-api-config</artifactId>
64                 <version>${project.version}</version>
65             </dependency>
66             <dependency>
67                 <groupId>${project.groupId}</groupId>
68                 <artifactId>pcep-impl</artifactId>
69                 <version>${project.version}</version>
70             </dependency>
71             <dependency>
72                 <groupId>${project.groupId}</groupId>
73                 <artifactId>pcep-impl-config</artifactId>
74                 <version>${project.version}</version>
75             </dependency>
76             <dependency>
77                 <groupId>${project.groupId}</groupId>
78                 <artifactId>pcep-spi</artifactId>
79                 <version>${project.version}</version>
80             </dependency>
81             <dependency>
82                 <groupId>${project.groupId}</groupId>
83                 <artifactId>pcep-spi-config</artifactId>
84                 <version>${project.version}</version>
85             </dependency>
86             <dependency>
87                 <groupId>${project.groupId}</groupId>
88                 <artifactId>pcep-ietf-stateful02</artifactId>
89                 <version>${project.version}</version>
90             </dependency>
91              <dependency>
92                 <groupId>${project.groupId}</groupId>
93                 <artifactId>pcep-ietf-stateful07</artifactId>
94                 <version>${project.version}</version>
95             </dependency>
96             <dependency>
97                 <groupId>${project.groupId}</groupId>
98                 <artifactId>pcep-testtool</artifactId>
99                 <version>${project.version}</version>
100             </dependency>
101             <dependency>
102                 <groupId>${project.groupId}</groupId>
103                 <artifactId>pcep-topology-api</artifactId>
104                 <version>${project.version}</version>
105             </dependency>
106             <dependency>
107                 <groupId>${project.groupId}</groupId>
108                 <artifactId>pcep-topology-spi</artifactId>
109                 <version>${project.version}</version>
110             </dependency>
111             <dependency>
112                 <groupId>${project.groupId}</groupId>
113                 <artifactId>pcep-topology-provider</artifactId>
114                 <version>${project.version}</version>
115             </dependency>
116             <dependency>
117                 <groupId>${project.groupId}</groupId>
118                 <artifactId>pcep-topology-provider-config</artifactId>
119                 <version>${project.version}</version>
120             </dependency>
121             <dependency>
122                 <groupId>${project.groupId}</groupId>
123                 <artifactId>pcep-tunnel-api</artifactId>
124                 <version>${project.version}</version>
125             </dependency>
126             <dependency>
127                 <groupId>${project.groupId}</groupId>
128                 <artifactId>pcep-tunnel-provider</artifactId>
129                 <version>${project.version}</version>
130             </dependency>
131             <dependency>
132                 <groupId>${project.groupId}</groupId>
133                 <artifactId>pcep-tunnel-provider-config</artifactId>
134                 <version>${project.version}</version>
135             </dependency>
136
137             <!-- Stuff outside of this component -->
138             <dependency>
139                 <groupId>${project.groupId}</groupId>
140                 <artifactId>programming-api</artifactId>
141                 <version>${project.version}</version>
142             </dependency>
143             <dependency>
144                 <groupId>${project.groupId}</groupId>
145                 <artifactId>programming-spi</artifactId>
146                 <version>${project.version}</version>
147             </dependency>
148             <dependency>
149                 <groupId>${project.groupId}</groupId>
150                 <artifactId>programming-spi-config</artifactId>
151                 <version>${project.version}</version>
152             </dependency>
153             <dependency>
154                 <groupId>${project.groupId}</groupId>
155                 <artifactId>programming-topology-api</artifactId>
156                 <version>${project.version}</version>
157             </dependency>
158             <dependency>
159                 <groupId>${project.groupId}</groupId>
160                 <artifactId>programming-tunnel-api</artifactId>
161                 <version>${project.version}</version>
162             </dependency>
163             <dependency>
164                 <groupId>${project.groupId}</groupId>
165                 <artifactId>rsvp-api</artifactId>
166                 <version>${project.version}</version>
167             </dependency>
168             <dependency>
169                 <groupId>${project.groupId}</groupId>
170                 <artifactId>topology-api</artifactId>
171                 <version>${project.version}</version>
172             </dependency>
173             <dependency>
174                 <groupId>${project.groupId}</groupId>
175                 <artifactId>topology-api-config</artifactId>
176                 <version>${project.version}</version>
177             </dependency>
178             <dependency>
179                 <groupId>${project.groupId}</groupId>
180                 <artifactId>topology-tunnel-api</artifactId>
181                 <version>${project.version}</version>
182             </dependency>
183         </dependencies>
184     </dependencyManagement>
185 </project>