Update to work on Sodium SR1
[l2switch.git] / addresstracker / 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   <parent>
5     <groupId>org.opendaylight.l2switch</groupId>
6     <artifactId>l2switch-parent</artifactId>
7     <version>0.8.0-SNAPSHOT</version>
8     <relativePath>../../parent</relativePath>
9   </parent>
10   <groupId>org.opendaylight.l2switch.addresstracker</groupId>
11   <artifactId>addresstracker-impl</artifactId>
12   <packaging>bundle</packaging>
13   <dependencies>
14     <dependency>
15       <groupId>org.osgi</groupId>
16       <artifactId>org.osgi.core</artifactId>
17       <scope>provided</scope>
18     </dependency>
19     <dependency>
20       <groupId>org.opendaylight.controller</groupId>
21       <artifactId>sal-binding-api</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.openflowplugin.model</groupId>
25       <artifactId>model-flow-service</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller.model</groupId>
29       <artifactId>model-topology</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.yangtools</groupId>
33       <artifactId>yang-common</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.l2switch.packethandler</groupId>
37       <artifactId>packethandler-model</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.l2switch.addresstracker</groupId>
41       <artifactId>addresstracker-model</artifactId>
42    </dependency>
43     <dependency>
44       <groupId>com.google.code.findbugs</groupId>
45       <artifactId>jsr305</artifactId>
46       <optional>true</optional>
47     </dependency>
48     <dependency>
49       <groupId>junit</groupId>
50       <artifactId>junit</artifactId>
51       <scope>test</scope>
52     </dependency>
53     <dependency>
54       <groupId>org.mockito</groupId>
55       <artifactId>mockito-core</artifactId>
56       <scope>test</scope>
57     </dependency>
58   </dependencies>
59   <build>
60     <plugins>
61       <plugin>
62         <groupId>org.apache.felix</groupId>
63         <artifactId>maven-bundle-plugin</artifactId>
64         <extensions>true</extensions>
65         <configuration>
66           <instructions>
67             <Export-Package>org.opendaylight.yang.gen.v1.urn.opendaylight.packet.address.tracker.impl.rev140528</Export-Package>
68             <Import-Package>*</Import-Package>
69           </instructions>
70         </configuration>
71       </plugin>
72     </plugins>
73   </build>
74
75 </project>