Merge "Update config-module-archetype."
[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"
3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <artifactId>sal-samples</artifactId>
7     <groupId>org.opendaylight.controller.samples</groupId>
8     <version>1.1-SNAPSHOT</version>
9     <relativePath>../..</relativePath>
10   </parent>
11   <groupId>org.opendaylight.controller.samples.l2switch.md</groupId>
12   <artifactId>l2switch-impl</artifactId>
13   <packaging>bundle</packaging>
14
15   <build>
16     <plugins>
17       <plugin>
18         <groupId>org.apache.felix</groupId>
19         <artifactId>maven-bundle-plugin</artifactId>
20         <extensions>true</extensions>
21         <configuration>
22
23           <instructions>
24             <Bundle-Activator>org.opendaylight.controller.sample.l2switch.md.L2SwitchProvider</Bundle-Activator>
25           </instructions>
26           <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
27         </configuration>
28       </plugin>
29     </plugins>
30   </build>
31   <dependencies>
32     <dependency>
33       <groupId>junit</groupId>
34       <artifactId>junit</artifactId>
35       <version>${junit.version}</version>
36       <scope>test</scope>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.controller.samples.l2switch.md</groupId>
40       <artifactId>l2switch-model</artifactId>
41       <version>${project.version}</version>
42     </dependency>
43
44     <dependency>
45       <groupId>org.opendaylight.controller.model</groupId>
46       <artifactId>model-inventory</artifactId>
47     </dependency>
48
49     <dependency>
50       <groupId>org.opendaylight.controller</groupId>
51       <artifactId>sal-binding-api</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.yangtools</groupId>
55       <artifactId>yang-common</artifactId>
56       <version>${yangtools.version}</version>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.yangtools</groupId>
60       <artifactId>yang-binding</artifactId>
61       <version>${yangtools.version}</version>
62     </dependency>
63     <dependency>
64       <groupId>junit</groupId>
65       <artifactId>junit</artifactId>
66       <scope>test</scope>
67     </dependency>
68     <dependency>
69       <groupId>org.mockito</groupId>
70       <artifactId>mockito-all</artifactId>
71       <version>${mockito.version}</version>
72       <scope>test</scope>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.controller</groupId>
76       <artifactId>sal</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.controller.model</groupId>
80       <artifactId>model-flow-service</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.controller.thirdparty</groupId>
84       <artifactId>net.sf.jung2</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.controller.model</groupId>
88       <artifactId>model-topology</artifactId>
89       <version>1.1-SNAPSHOT</version>
90     </dependency>
91   </dependencies>
92 </project>