Remove version mismatch in config.version
[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     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.yangtools</groupId>
52       <artifactId>yang-common</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>junit</groupId>
56       <artifactId>junit</artifactId>
57       <scope>test</scope>
58     </dependency>
59     <dependency>
60       <groupId>org.mockito</groupId>
61       <artifactId>mockito-all</artifactId>
62       <scope>test</scope>
63     </dependency>
64   </dependencies>
65
66   <build>
67     <plugins>
68       <plugin>
69         <groupId>org.apache.felix</groupId>
70         <artifactId>maven-bundle-plugin</artifactId>
71         <extensions>true</extensions>
72         <configuration>
73
74           <instructions>
75             <Bundle-Activator>org.opendaylight.controller.sample.l2switch.md.L2SwitchProvider</Bundle-Activator>
76           </instructions>
77           <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
78         </configuration>
79       </plugin>
80     </plugins>
81   </build>
82 </project>