Fix javadoc in BGPDispatcher
[bgpcep.git] / bgp / rib-impl / 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
6         <parent>
7                 <groupId>org.opendaylight.bgpcep</groupId>
8                 <artifactId>bgp-parent</artifactId>
9                 <version>0.3.0-SNAPSHOT</version>
10         </parent>
11
12         <modelVersion>4.0.0</modelVersion>
13         <artifactId>bgp-rib-impl</artifactId>
14         <description>BGP RIB implementation</description>
15         <packaging>bundle</packaging>
16         <name>${project.artifactId}</name>
17         <prerequisites>
18                 <maven>3.0.4</maven>
19         </prerequisites>
20
21         <dependencies>
22                 <dependency>
23                         <groupId>${project.groupId}</groupId>
24                         <artifactId>concepts</artifactId>
25                 </dependency>
26                 <dependency>
27                         <groupId>${project.groupId}</groupId>
28                         <artifactId>framework</artifactId>
29                 </dependency>
30                 <dependency>
31                         <groupId>${project.groupId}</groupId>
32                         <artifactId>util</artifactId>
33                 </dependency>
34                 <dependency>
35                         <groupId>${project.groupId}</groupId>
36                         <artifactId>bgp-concepts</artifactId>
37                 </dependency>
38                 <dependency>
39                         <groupId>${project.groupId}</groupId>
40                         <artifactId>bgp-linkstate</artifactId>
41                 </dependency>
42                 <dependency>
43                         <groupId>${project.groupId}</groupId>
44                         <artifactId>bgp-parser-api</artifactId>
45                 </dependency>
46                 <dependency>
47                         <groupId>${project.groupId}</groupId>
48                         <artifactId>bgp-rib-api</artifactId>
49                 </dependency>
50                 <dependency>
51                         <groupId>${project.groupId}</groupId>
52                         <artifactId>bgp-rib-spi</artifactId>
53                 </dependency>
54                 <dependency>
55                         <groupId>${project.groupId}</groupId>
56                         <artifactId>bgp-util</artifactId>
57                 </dependency>
58                 <dependency>
59                         <groupId>com.google.code.findbugs</groupId>
60                         <artifactId>jsr305</artifactId>
61                 </dependency>
62                 <dependency>
63                         <groupId>com.google.guava</groupId>
64                         <artifactId>guava</artifactId>
65                 </dependency>
66         <dependency>
67                         <groupId>io.netty</groupId>
68                         <artifactId>netty-codec</artifactId>
69                 </dependency>
70         <dependency>
71                         <groupId>io.netty</groupId>
72                         <artifactId>netty-common</artifactId>
73                 </dependency>
74         <dependency>
75                         <groupId>io.netty</groupId>
76                         <artifactId>netty-transport</artifactId>
77                 </dependency>
78                 <dependency>
79                         <groupId>org.slf4j</groupId>
80                         <artifactId>slf4j-api</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>org.opendaylight.controller</groupId>
84             <artifactId>sal-binding-api</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>org.opendaylight.yangtools</groupId>
88             <artifactId>yang-binding</artifactId>
89         </dependency>
90
91         <!-- Testing dependencies -->
92                 <dependency>
93                         <groupId>org.mockito</groupId>
94                         <artifactId>mockito-core</artifactId>
95                 </dependency>
96                 <dependency>
97                         <groupId>${project.groupId}</groupId>
98                         <artifactId>mockito-configuration</artifactId>
99             <version>${project.version}</version>
100                         <scope>test</scope>
101                 </dependency>
102                 <dependency>
103                         <groupId>${project.groupId}</groupId>
104                         <artifactId>bgp-parser-impl</artifactId>
105                         <scope>test</scope>
106                 </dependency>
107                 <dependency>
108                         <groupId>junit</groupId>
109                         <artifactId>junit</artifactId>
110                 </dependency>
111         </dependencies>
112
113         <build>
114                 <plugins>
115                         <plugin>
116                                 <groupId>org.apache.felix</groupId>
117                                 <artifactId>maven-bundle-plugin</artifactId>
118                                 <version>${maven.bundle.version}</version>
119                                 <extensions>true</extensions>
120                                 <configuration>
121                                         <instructions>
122                                                 <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
123                                                 <Export-Package>
124                                                         org.opendaylight.protocol.bgp.rib.impl,
125                                                         org.opendaylight.protocol.bgp.rib.impl.spi
126                         </Export-Package>
127                                         </instructions>
128                                 </configuration>
129                         </plugin>
130                 </plugins>
131         </build>
132
133         <distributionManagement>
134                 <site>
135                         <id>${project.artifactId}</id>
136                         <name>BGP-RIB-IMPL Module site</name>
137                         <url>${basedir}/target/site/${project.artifactId}</url>
138                 </site>
139         </distributionManagement>
140
141 </project>