But 1129: Removing hard coded versions from MD-SAL
[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     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller.samples.l2switch.md</groupId>
38       <artifactId>l2switch-model</artifactId>
39       <version>${project.version}</version>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller.thirdparty</groupId>
43       <artifactId>net.sf.jung2</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.yangtools</groupId>
47       <artifactId>yang-binding</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.yangtools</groupId>
51       <artifactId>yang-common</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>junit</groupId>
55       <artifactId>junit</artifactId>
56       <scope>test</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.mockito</groupId>
60       <artifactId>mockito-all</artifactId>
61       <scope>test</scope>
62     </dependency>
63   </dependencies>
64
65   <build>
66     <plugins>
67       <plugin>
68         <groupId>org.apache.felix</groupId>
69         <artifactId>maven-bundle-plugin</artifactId>
70         <extensions>true</extensions>
71         <configuration>
72
73           <instructions>
74             <Bundle-Activator>org.opendaylight.controller.sample.l2switch.md.L2SwitchProvider</Bundle-Activator>
75           </instructions>
76           <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
77         </configuration>
78       </plugin>
79     </plugins>
80   </build>
81 </project>