Bump versions by x.(y+1).z for next dev cycle
[openflowplugin.git] / samples / learning-switch / 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.openflowplugin</groupId>
6         <artifactId>openflowplugin-parent</artifactId>
7         <version>0.7.0-SNAPSHOT</version>
8         <relativePath>../../parent</relativePath>
9     </parent>
10
11     <artifactId>learning-switch</artifactId>
12     <packaging>bundle</packaging>
13
14     <build>
15         <plugins>
16             <plugin>
17                 <groupId>org.apache.felix</groupId>
18                 <artifactId>maven-bundle-plugin</artifactId>
19                 <extensions>true</extensions>
20                 <configuration>
21                     <instructions>
22                         <Embed-Transitive>
23                             false
24                         </Embed-Transitive>
25                         <Bundle-Activator>
26                             org.opendaylight.openflowplugin.learningswitch.Activator
27                         </Bundle-Activator>
28                     </instructions>
29                     <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
30                 </configuration>
31             </plugin>
32         </plugins>
33     </build>
34     <dependencies>
35         <dependency>
36             <groupId>org.opendaylight.openflowplugin.model</groupId>
37             <artifactId>model-flow-base</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.openflowplugin.model</groupId>
41             <artifactId>model-flow-service</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.controller.model</groupId>
45             <artifactId>model-inventory</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.controller</groupId>
49             <artifactId>sal-binding-api</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.mdsal</groupId>
53             <artifactId>yang-binding</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.openflowplugin</groupId>
57             <artifactId>openflowplugin-api</artifactId>
58         </dependency>
59         <dependency>
60           <groupId>org.osgi</groupId>
61           <artifactId>org.osgi.core</artifactId>
62         </dependency>
63
64
65         <dependency>
66             <groupId>junit</groupId>
67             <artifactId>junit</artifactId>
68             <scope>test</scope>
69         </dependency>
70     </dependencies>
71 </project>
72