Merge "Rework build to move the parent out"
[bgpcep.git] / topology / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><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">
3
4         <parent>
5                 <groupId>org.opendaylight.bgpcep</groupId>
6                 <artifactId>commons.parent</artifactId>
7         <version>0.3.0-SNAPSHOT</version>
8         <relativePath>../commons/parent</relativePath>
9         </parent>
10         <prerequisites>
11                 <maven>3.0.4</maven>
12         </prerequisites>
13
14         <modelVersion>4.0.0</modelVersion>
15         <artifactId>topology-parent</artifactId>
16         <description>Topology parent</description>
17         <packaging>pom</packaging>
18         <name>${project.artifactId}</name>
19
20         <modules>
21         <module>api</module>
22         <module>api-config</module>
23         <module>segment-routing</module>
24                 <module>tunnel-api</module>
25     </modules>
26
27     <dependencyManagement>
28         <dependencies>
29             <dependency>
30                 <groupId>${project.groupId}</groupId>
31                 <artifactId>topology-api</artifactId>
32                 <version>${project.version}</version>
33             </dependency>
34             <dependency>
35                 <groupId>${project.groupId}</groupId>
36                 <artifactId>topology-api-config</artifactId>
37                 <version>${project.version}</version>
38             </dependency>
39             <dependency>
40                 <groupId>${project.groupId}</groupId>
41                 <artifactId>topology-segment-routing</artifactId>
42                 <version>${project.version}</version>
43             </dependency>
44             <dependency>
45                 <groupId>${project.groupId}</groupId>
46                 <artifactId>topology-tunnel-api</artifactId>
47                 <version>${project.version}</version>
48             </dependency>
49         </dependencies>
50     </dependencyManagement>
51 </project>