Handle null LinkstateDestination case
[bgpcep.git] / concepts / 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>commons.parent</artifactId>
9         <version>0.3.0-SNAPSHOT</version>
10         <relativePath>../commons/parent</relativePath>
11         </parent>
12
13         <modelVersion>4.0.0</modelVersion>
14         <artifactId>concepts</artifactId>
15         <description>Basic protocol concepts</description>
16         <packaging>bundle</packaging>
17         <name>${project.artifactId}</name>
18         <prerequisites>
19                 <maven>3.0.4</maven>
20         </prerequisites>
21
22         <dependencies>
23                 <dependency>
24                         <groupId>${project.groupId}</groupId>
25                         <artifactId>util</artifactId>
26         </dependency>
27
28                 <dependency>
29                         <groupId>org.slf4j</groupId>
30                         <artifactId>slf4j-api</artifactId>
31         </dependency>
32                 <dependency>
33                         <groupId>com.google.code.findbugs</groupId>
34                         <artifactId>jsr305</artifactId>
35                 </dependency>
36                 <dependency>
37                         <groupId>com.google.guava</groupId>
38                         <artifactId>guava</artifactId>
39         </dependency>
40
41                  <!--
42             FIXME: this is in support of the generated code. This should not
43                    be here, but the plugin should bring it in.
44         -->
45         <dependency>
46             <groupId>org.opendaylight.yangtools</groupId>
47             <artifactId>yang-binding</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.yangtools</groupId>
51             <artifactId>yang-common</artifactId>
52         </dependency>
53         <!--
54              FIXME: these are IETF models which are pre-generated in SAL infra.
55                     This should not be here, but rather should somehow be
56                     discovered by the plugin.
57         -->
58         <dependency>
59             <groupId>org.opendaylight.yangtools.model</groupId>
60             <artifactId>ietf-inet-types</artifactId>
61         </dependency>
62
63         <!-- Testing dependencies -->
64         <dependency>
65             <groupId>junit</groupId>
66             <artifactId>junit</artifactId>
67         </dependency>
68         </dependencies>
69
70         <build>
71         <plugins>
72                         <plugin>
73                 <groupId>org.opendaylight.yangtools</groupId>
74                 <artifactId>yang-maven-plugin</artifactId>
75             </plugin>
76             <plugin>
77                                 <groupId>org.apache.felix</groupId>
78                                 <artifactId>maven-bundle-plugin</artifactId>
79                                 <extensions>true</extensions>
80                                 <configuration>
81                                         <instructions>
82                                                 <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
83                                         </instructions>
84                                 </configuration>
85                         </plugin>
86                 </plugins>
87         </build>
88 </project>