Merge "BUG-110: integration test message -> parser -> rib -> md-sal."
[bgpcep.git] / bgp / linkstate / 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-linkstate</artifactId>
14         <description>BGP linkstate concepts</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>bgp-concepts</artifactId>
25                 </dependency>
26                 <dependency>
27                         <groupId>${project.groupId}</groupId>
28                         <artifactId>bgp-parser-api</artifactId>
29                 </dependency>
30                 <dependency>
31                         <groupId>${project.groupId}</groupId>
32                         <artifactId>bgp-parser-spi</artifactId>
33                 </dependency>
34                 <dependency>
35                         <groupId>${project.groupId}</groupId>
36                         <artifactId>bgp-rib-api</artifactId>
37                 </dependency>
38                 <dependency>
39                         <groupId>${project.groupId}</groupId>
40                         <artifactId>bgp-rib-spi</artifactId>
41         </dependency>
42
43                 <dependency>
44                         <groupId>${project.groupId}</groupId>
45                         <artifactId>concepts</artifactId>
46                 </dependency>
47                 <dependency>
48                         <groupId>${project.groupId}</groupId>
49                         <artifactId>rsvp-api</artifactId>
50                 </dependency>
51                 <dependency>
52                         <groupId>${project.groupId}</groupId>
53                         <artifactId>util</artifactId>
54         </dependency>
55
56                 <dependency>
57                         <groupId>org.slf4j</groupId>
58                         <artifactId>slf4j-api</artifactId>
59         </dependency>
60                 <dependency>
61                         <groupId>com.google.guava</groupId>
62                         <artifactId>guava</artifactId>
63         </dependency>
64
65         <dependency>
66             <groupId>org.opendaylight.yangtools</groupId>
67             <artifactId>yang-binding</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.yangtools</groupId>
71             <artifactId>yang-common</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.yangtools.model</groupId>
75             <artifactId>ietf-inet-types</artifactId>
76             <version>2010.09.24-SNAPSHOT</version>
77         </dependency>
78         <dependency>
79             <groupId>junit</groupId>
80             <artifactId>junit</artifactId>
81          </dependency>
82         </dependencies>
83
84         <build>
85                 <plugins>
86                         <plugin>
87                 <groupId>org.opendaylight.yangtools</groupId>
88                 <artifactId>yang-maven-plugin</artifactId>
89             </plugin>
90                         <plugin>
91                                 <groupId>org.apache.felix</groupId>
92                                 <artifactId>maven-bundle-plugin</artifactId>
93                                 <version>${maven.bundle.version}</version>
94                                 <extensions>true</extensions>
95                                 <configuration>
96                                         <instructions>
97                                                 <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
98                                                 <Export-Package>
99                             org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.linkstate.rev131125.*,
100                             org.opendaylight.protocol.bgp.linkstate,
101                         </Export-Package>
102                                         </instructions>
103                                 </configuration>
104                         </plugin>
105                 </plugins>
106         </build>
107
108         <distributionManagement>
109                 <site>
110                         <id>${project.artifactId}</id>
111                         <name>BGP-CONCEPTS Module site</name>
112                         <url>${basedir}/target/site/${project.artifactId}</url>
113                 </site>
114         </distributionManagement>
115
116 </project>