c8cccdef97073fbe7478c33102bcf95584556dbe
[bgpcep.git] / bgp / rib-impl-config / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <parent>
6         <groupId>org.opendaylight.bgpcep</groupId>
7         <artifactId>bgp-parent</artifactId>
8         <version>0.3.0-SNAPSHOT</version>
9     </parent>
10
11     <modelVersion>4.0.0</modelVersion>
12     <artifactId>bgp-rib-impl-config</artifactId>
13     <description>BGP RIB implementation configuration</description>
14     <packaging>bundle</packaging>
15     <name>${project.artifactId}</name>
16     <prerequisites>
17         <maven>3.0.4</maven>
18     </prerequisites>
19
20     <dependencies>
21         <dependency>
22             <groupId>junit</groupId>
23             <artifactId>junit</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>${project.groupId}</groupId>
27             <artifactId>bgp-rib-api-config</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>${project.groupId}</groupId>
31             <artifactId>bgp-rib-spi-config</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>${project.groupId}</groupId>
35             <artifactId>bgp-parser-api</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>${project.groupId}</groupId>
39             <artifactId>bgp-parser-spi-config</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>${project.groupId}</groupId>
43             <artifactId>bgp-rib-impl</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>${project.groupId}</groupId>
47             <artifactId>bgp-parser-impl</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>bgp-update-api-config</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.controller</groupId>
55             <artifactId>config-api</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.controller</groupId>
59             <artifactId>sal-binding-config</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.controller</groupId>
63             <artifactId>netty-config-api</artifactId>
64         </dependency>
65
66         <!--test dependencies -->
67         <dependency>
68             <groupId>org.opendaylight.controller</groupId>
69             <artifactId>config-manager</artifactId>
70             <version>${controller.config.version}</version>
71             <scope>test</scope>
72             <type>test-jar</type>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.controller</groupId>
76             <artifactId>config-manager</artifactId>
77             <version>${controller.config.version}</version>
78             <scope>test</scope>
79         </dependency>
80         <dependency>
81             <groupId>org.opendaylight.controller</groupId>
82             <artifactId>config-util</artifactId>
83             <version>${controller.config.version}</version>
84             <scope>test</scope>
85         </dependency>
86         <dependency>
87             <groupId>${project.groupId}</groupId>
88             <artifactId>mockito-configuration</artifactId>
89             <version>${project.version}</version>
90             <scope>test</scope>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.controller</groupId>
94             <artifactId>netty-event-executor-config</artifactId>
95             <version>${controller.config.version}</version>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>org.opendaylight.controller</groupId>
100             <artifactId>netty-threadgroup-config</artifactId>
101             <version>${controller.config.version}</version>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>org.opendaylight.controller</groupId>
106             <artifactId>sal-binding-broker-impl</artifactId>
107         </dependency>
108     </dependencies>
109
110     <build>
111         <plugins>
112             <plugin>
113                 <groupId>org.opendaylight.yangtools</groupId>
114                 <artifactId>yang-maven-plugin</artifactId>
115             </plugin>
116             <plugin>
117                 <groupId>org.apache.felix</groupId>
118                 <artifactId>maven-bundle-plugin</artifactId>
119                 <extensions>true</extensions>
120                 <configuration>
121                     <instructions>
122                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
123                     </instructions>
124                 </configuration>
125             </plugin>
126         </plugins>
127     </build>
128 </project>