31e9747e7fc60b7619db13ffd21576b9d18cc010
[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
11   <groupId>org.opendaylight.l2switch.addresstracker</groupId>
12   <artifactId>addresstracker-impl</artifactId>
13   <packaging>bundle</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>org.osgi</groupId>
17       <artifactId>org.osgi.core</artifactId>
18       <scope>provided</scope>
19     </dependency>
20     <dependency>
21       <groupId>org.opendaylight.mdsal</groupId>
22       <artifactId>mdsal-binding-api</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.openflowplugin.model</groupId>
26       <artifactId>model-flow-service</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.controller.model</groupId>
30       <artifactId>model-topology</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.yangtools</groupId>
34       <artifactId>yang-common</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.l2switch.packethandler</groupId>
38       <artifactId>packethandler-model</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.l2switch.addresstracker</groupId>
42       <artifactId>addresstracker-model</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>junit</groupId>
46       <artifactId>junit</artifactId>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.mockito</groupId>
51       <artifactId>mockito-core</artifactId>
52       <scope>test</scope>
53     </dependency>
54   </dependencies>
55   <build>
56     <plugins>
57       <plugin>
58         <groupId>org.apache.felix</groupId>
59         <artifactId>maven-bundle-plugin</artifactId>
60         <extensions>true</extensions>
61         <configuration>
62           <instructions>
63             <Export-Package>org.opendaylight.yang.gen.v1.urn.opendaylight.packet.address.tracker.impl.rev140528</Export-Package>
64             <Import-Package>*</Import-Package>
65           </instructions>
66         </configuration>
67       </plugin>
68     </plugins>
69   </build>
70 </project>