Merge "Enhance the LLDPTLV.java to handle the LLDP port ID subtypes 3 (MAC) in additi...
[controller.git] / opendaylight / md-sal / samples / l2switch / 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.controller.samples</groupId>
6     <artifactId>sal-samples</artifactId>
7     <version>1.1-SNAPSHOT</version>
8     <relativePath>../..</relativePath>
9   </parent>
10   <groupId>org.opendaylight.controller.samples.l2switch.md</groupId>
11   <artifactId>l2switch-impl</artifactId>
12   <packaging>bundle</packaging>
13   <dependencies>
14     <dependency>
15       <groupId>org.opendaylight.controller</groupId>
16       <artifactId>sal</artifactId>
17     </dependency>
18
19     <dependency>
20       <groupId>org.opendaylight.controller</groupId>
21       <artifactId>sal-binding-api</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller.model</groupId>
25       <artifactId>model-flow-service</artifactId>
26     </dependency>
27
28     <dependency>
29       <groupId>org.opendaylight.controller.model</groupId>
30       <artifactId>model-inventory</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.controller.model</groupId>
34       <artifactId>model-topology</artifactId>
35       <version>1.1-SNAPSHOT</version>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.controller.samples.l2switch.md</groupId>
39       <artifactId>l2switch-model</artifactId>
40       <version>${project.version}</version>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.controller.thirdparty</groupId>
44       <artifactId>net.sf.jung2</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.yangtools</groupId>
48       <artifactId>yang-binding</artifactId>
49       <version>${yangtools.version}</version>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.yangtools</groupId>
53       <artifactId>yang-common</artifactId>
54       <version>${yangtools.version}</version>
55     </dependency>
56     <dependency>
57       <groupId>junit</groupId>
58       <artifactId>junit</artifactId>
59       <version>${junit.version}</version>
60       <scope>test</scope>
61     </dependency>
62     <dependency>
63       <groupId>junit</groupId>
64       <artifactId>junit</artifactId>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.mockito</groupId>
69       <artifactId>mockito-all</artifactId>
70       <version>${mockito.version}</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
83           <instructions>
84             <Bundle-Activator>org.opendaylight.controller.sample.l2switch.md.L2SwitchProvider</Bundle-Activator>
85           </instructions>
86           <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
87         </configuration>
88       </plugin>
89     </plugins>
90   </build>
91 </project>