dc943b0bf78d36c2dd1d84daa4a2d52878a519d4
[lispflowmapping.git] / mappingservice / implementation / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>config-parent</artifactId>
8     <version>0.4.0-SNAPSHOT</version>
9     <relativePath/>
10   </parent>
11
12   <artifactId>mappingservice.implementation</artifactId>
13   <groupId>org.opendaylight.lispflowmapping</groupId>
14   <version>1.3.0-SNAPSHOT</version>
15   <packaging>bundle</packaging>
16   <name>LISP Flow Mapping Implementation</name>
17
18   <dependencies>
19     <dependency>
20       <groupId>${project.groupId}</groupId>
21       <artifactId>common.unittest.tools</artifactId>
22       <version>${project.version}</version>
23     </dependency>
24     <dependency>
25       <groupId>${project.groupId}</groupId>
26       <artifactId>mappingservice.api</artifactId>
27       <version>${project.version}</version>
28     </dependency>
29     <dependency>
30       <groupId>${project.groupId}</groupId>
31       <artifactId>mappingservice.yangmodel</artifactId>
32       <version>${project.version}</version>
33     </dependency>
34
35     <!-- needed for osgi console -->
36     <dependency>
37       <groupId>equinoxSDK381</groupId>
38       <artifactId>org.eclipse.osgi</artifactId>
39     </dependency>
40
41     <!-- testing dependencies -->
42     <dependency>
43       <groupId>org.hamcrest</groupId>
44       <artifactId>hamcrest-core</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.hamcrest</groupId>
48       <artifactId>hamcrest-core</artifactId>
49       <scope>test</scope>
50     </dependency>
51     <dependency>
52       <groupId>junit</groupId>
53       <artifactId>junit</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>junit-addons</groupId>
57       <artifactId>junit-addons</artifactId>
58       <version>1.4</version>
59       <scope>test</scope>
60     </dependency>
61     <dependency>
62       <groupId>org.jmock</groupId>
63       <artifactId>jmock-junit4</artifactId>
64       <version>2.6.0</version>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.jmock</groupId>
69       <artifactId>jmock-legacy</artifactId>
70       <version>2.6.0</version>
71       <scope>test</scope>
72     </dependency>
73   </dependencies>
74
75   <build>
76      <plugins>
77        <plugin>
78          <groupId>org.apache.felix</groupId>
79          <artifactId>maven-bundle-plugin</artifactId>
80          <extensions>true</extensions>
81          <configuration>
82            <instructions>
83              <Export-Package>
84                org.opendaylight.lispflowmapping.implementation,
85                org.opendaylight.lispflowmapping.implementation.serializer,
86                org.opendaylight.lispflowmapping.implementation.util
87              </Export-Package>
88            </instructions>
89          </configuration>
90        </plugin>
91      </plugins>
92    </build>
93 </project>