Merge "Do not hard-code the artifact version"
[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 <!--
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"
12
13     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
14
15     <modelVersion>4.0.0</modelVersion>
16     <scm>
17         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
18         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
19         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
20         <tag>HEAD</tag>
21     </scm>
22     <parent>
23         <groupId>org.opendaylight.bgpcep</groupId>
24         <artifactId>bgp-parent</artifactId>
25         <version>0.3.0-SNAPSHOT</version>
26     </parent>
27
28     <artifactId>bgp-rib-impl-config</artifactId>
29     <description>BGP RIB implementation configuration</description>
30     <packaging>bundle</packaging>
31     <name>${project.artifactId}</name>
32     <prerequisites>
33         <maven>3.0.4</maven>
34     </prerequisites>
35
36     <dependencies>
37         <dependency>
38             <groupId>${project.groupId}</groupId>
39             <artifactId>bgp-linkstate</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>${project.groupId}</groupId>
43             <artifactId>bgp-rib-api</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>${project.groupId}</groupId>
47             <artifactId>bgp-rib-api-config</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>bgp-rib-spi-config</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>bgp-parser-api</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>${project.groupId}</groupId>
59             <artifactId>bgp-parser-spi-config</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>${project.groupId}</groupId>
63             <artifactId>bgp-rib-impl</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>${project.groupId}</groupId>
67             <artifactId>bgp-parser-impl</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>${project.groupId}</groupId>
71             <artifactId>bgp-update-api-config</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.controller</groupId>
75             <artifactId>config-api</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.controller</groupId>
79             <artifactId>sal-binding-config</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.controller</groupId>
83             <artifactId>netty-config-api</artifactId>
84         </dependency>
85
86         <!--test dependencies -->
87         <dependency>
88             <groupId>junit</groupId>
89             <artifactId>junit</artifactId>
90             <scope>test</scope>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.controller</groupId>
94             <artifactId>config-manager</artifactId>
95             <version>${controller.config.version}</version>
96             <scope>test</scope>
97             <type>test-jar</type>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.controller</groupId>
101             <artifactId>yang-store-impl</artifactId>
102             <version>${controller.config.version}</version>
103             <scope>test</scope>
104         </dependency>
105         <dependency>
106             <groupId>org.opendaylight.controller</groupId>
107             <artifactId>config-manager</artifactId>
108             <version>${controller.config.version}</version>
109             <scope>test</scope>
110         </dependency>
111         <dependency>
112             <groupId>org.opendaylight.controller</groupId>
113             <artifactId>config-util</artifactId>
114             <version>${controller.config.version}</version>
115             <scope>test</scope>
116         </dependency>
117         <dependency>
118             <groupId>org.opendaylight.yangtools</groupId>
119             <artifactId>mockito-configuration</artifactId>
120         </dependency>
121         <dependency>
122             <groupId>org.opendaylight.controller</groupId>
123             <artifactId>netty-event-executor-config</artifactId>
124             <version>${controller.config.version}</version>
125             <scope>test</scope>
126         </dependency>
127         <dependency>
128             <groupId>org.opendaylight.controller</groupId>
129             <artifactId>netty-threadgroup-config</artifactId>
130             <version>${controller.config.version}</version>
131             <scope>test</scope>
132         </dependency>
133         <dependency>
134             <groupId>org.opendaylight.controller</groupId>
135             <artifactId>sal-binding-broker-impl</artifactId>
136             <scope>test</scope>
137         </dependency>
138     </dependencies>
139
140     <build>
141         <plugins>
142             <plugin>
143                 <groupId>org.opendaylight.yangtools</groupId>
144                 <artifactId>yang-maven-plugin</artifactId>
145             </plugin>
146             <plugin>
147                 <groupId>org.apache.felix</groupId>
148                 <artifactId>maven-bundle-plugin</artifactId>
149                 <extensions>true</extensions>
150                 <configuration>
151                     <instructions>
152                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
153                     </instructions>
154                 </configuration>
155             </plugin>
156         </plugins>
157     </build>
158 </project>