8c24dbf4fc32e694408a66ef8b7648164b1b4889
[bgpcep.git] / bgp / rib-mock / 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.1.0-SNAPSHOT</version>
10         </parent>
11
12         <modelVersion>4.0.0</modelVersion>
13         <artifactId>bgp-rib-mock</artifactId>
14         <description>BGP Update Mock 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>bgp-rib-impl</artifactId>
25             <version>${project.version}</version>
26                 </dependency>
27                 <dependency>
28                         <groupId>${project.groupId}</groupId>
29                         <artifactId>util</artifactId>
30             <version>${project.version}</version>
31                 </dependency>
32                 <dependency>
33                         <groupId>${project.groupId}</groupId>
34                         <artifactId>bgp-parser-impl</artifactId>
35             <version>${project.version}</version>
36                 </dependency>
37                 <dependency>
38                         <groupId>${project.groupId}</groupId>
39                         <artifactId>mockito-configuration</artifactId>
40             <version>${project.version}</version>
41                         <scope>test</scope>
42                 </dependency>
43                 <dependency>
44                         <groupId>org.slf4j</groupId>
45                         <artifactId>slf4j-api</artifactId>
46                         <version>${slf4j.version}</version>
47                 </dependency>
48         </dependencies>
49
50         <build>
51                 <plugins>
52                         <plugin>
53                                 <groupId>org.apache.felix</groupId>
54                                 <artifactId>maven-bundle-plugin</artifactId>
55                                 <version>${maven.bundle.version}</version>
56                                 <extensions>true</extensions>
57                                 <configuration>
58                                         <instructions>
59                                                 <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
60                                                 <Export-Package>
61                                                         org.opendaylight.protocol.bgp.rib.mock,
62                                                 </Export-Package>
63                                                 <Import-Package>
64                                                         org.opendaylight.protocol.concepts,
65                                                         org.opendaylight.protocol.framework,
66                                                         org.opendaylight.protocol.bgp.linkstate,
67                                                         com.google.common.*,
68                                                         javax.annotation,
69                                                         javax.management,
70                                                         org.apache.commons.codec,
71                                                         org.apache.commons.codec.binary,
72                                                         org.apache.commons.lang,
73                                                         org.opendaylight.protocol.bgp.concepts,
74                                                         org.opendaylight.protocol.bgp.parser,
75                             org.opendaylight.protocol.bgp.parser.impl,
76                                                         org.opendaylight.protocol.bgp.parser.message,
77                             org.opendaylight.protocol.bgp.parser.parameter,
78                             org.opendaylight.protocol.bgp.rib.impl,
79                             org.opendaylight.protocol.util,
80                                                         org.slf4j,
81                                                 </Import-Package>
82                                         </instructions>
83                                 </configuration>
84                         </plugin>
85                         <plugin>
86                                 <groupId>org.apache.maven.plugins</groupId>
87                                 <artifactId>maven-jar-plugin</artifactId>
88                                 <version>2.4</version>
89                                 <executions>
90                                         <execution>
91                                                 <phase>package</phase>
92                                                 <goals>
93                                                         <goal>test-jar</goal>
94                                                 </goals>
95                                         </execution>
96                                 </executions>
97                         </plugin>
98                 </plugins>
99         </build>
100
101         <distributionManagement>
102                 <site>
103                         <id>${project.artifactId}</id>
104                         <name>BGP-UPDATE-MOCK Module site</name>
105                         <url>${basedir}/target/site/${project.artifactId}</url>
106                 </site>
107         </distributionManagement>
108
109 </project>