Fixup some warnings
[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             <version>${controller.config.version}</version>
65         </dependency>
66
67         <!--test dependencies -->
68         <dependency>
69             <groupId>org.opendaylight.controller</groupId>
70             <artifactId>config-manager</artifactId>
71             <version>${controller.config.version}</version>
72             <scope>test</scope>
73             <type>test-jar</type>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.controller</groupId>
77             <artifactId>config-manager</artifactId>
78             <version>${controller.config.version}</version>
79             <scope>test</scope>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.controller</groupId>
83             <artifactId>config-util</artifactId>
84             <version>${controller.config.version}</version>
85             <scope>test</scope>
86         </dependency>
87         <dependency>
88             <groupId>${project.groupId}</groupId>
89             <artifactId>mockito-configuration</artifactId>
90             <version>${project.version}</version>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.controller</groupId>
95             <artifactId>netty-event-executor-config</artifactId>
96             <version>${controller.config.version}</version>
97             <scope>test</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.controller</groupId>
101             <artifactId>netty-threadgroup-config</artifactId>
102             <version>${controller.config.version}</version>
103             <scope>test</scope>
104         </dependency>
105         <dependency>
106             <groupId>org.opendaylight.controller</groupId>
107             <artifactId>sal-binding-broker-impl</artifactId>
108         </dependency>
109     </dependencies>
110
111     <build>
112         <plugins>
113             <plugin>
114                 <groupId>org.opendaylight.yangtools</groupId>
115                 <artifactId>yang-maven-plugin</artifactId>
116                 <executions>
117                     <execution>
118                         <goals>
119                             <goal>generate-sources</goal>
120                         </goals>
121                         <configuration>
122                             <codeGenerators>
123                                 <generator>
124                                     <codeGeneratorClass>
125                                         org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
126                                     </codeGeneratorClass>
127                                     <outputBaseDir>${project.build.directory}/generated-sources/config</outputBaseDir>
128                                     <additionalConfiguration>
129                                         <namespaceToPackage1>
130                                             urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang
131                                         </namespaceToPackage1>
132                                     </additionalConfiguration>
133                                 </generator>
134                             </codeGenerators>
135                             <inspectDependencies>true</inspectDependencies>
136                         </configuration>
137                     </execution>
138                 </executions>
139                 <dependencies>
140                     <dependency>
141                         <groupId>org.opendaylight.controller</groupId>
142                         <artifactId>yang-jmx-generator-plugin</artifactId>
143                         <version>${controller.config.version}</version>
144                     </dependency>
145                 </dependencies>
146             </plugin>
147             <plugin>
148                 <groupId>org.apache.felix</groupId>
149                 <artifactId>maven-bundle-plugin</artifactId>
150                 <version>${maven.bundle.version}</version>
151                 <extensions>true</extensions>
152                 <configuration>
153                     <instructions>
154                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
155                         <Export-Package>
156                             org.opendaylight.controller.config.yang.bgp.rib.impl
157                         </Export-Package>
158                     </instructions>
159                 </configuration>
160             </plugin>
161         </plugins>
162     </build>
163
164     <distributionManagement>
165         <site>
166             <id>${project.artifactId}</id>
167             <name>BGP-RIB-IMPL-CONFIG Module site</name>
168             <url>${basedir}/target/site/${project.artifactId}</url>
169         </site>
170     </distributionManagement>
171 </project>