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.5.0-SNAPSHOT</version>
8         <relativePath>../../parent</relativePath>
9     </parent>
10
11     <artifactId>learning-switch</artifactId>
12     <packaging>bundle</packaging>
13
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                     <instructions>
23                         <Embed-Transitive>
24                             false
25                         </Embed-Transitive>
26                         <Bundle-Activator>
27                             org.opendaylight.openflowplugin.learningswitch.Activator
28                         </Bundle-Activator>
29                     </instructions>
30                     <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
31                 </configuration>
32             </plugin>
33         </plugins>
34     </build>
35     <dependencies>
36         <dependency>
37             <groupId>org.opendaylight.openflowplugin.model</groupId>
38             <artifactId>model-flow-base</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.openflowplugin.model</groupId>
42             <artifactId>model-flow-service</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.controller.model</groupId>
46             <artifactId>model-inventory</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.controller</groupId>
50             <artifactId>sal-binding-api</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.mdsal</groupId>
54             <artifactId>yang-binding</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.openflowplugin</groupId>
58             <artifactId>openflowplugin-api</artifactId>
59         </dependency>
60         <dependency>
61           <groupId>org.osgi</groupId>
62           <artifactId>org.osgi.core</artifactId>
63         </dependency>
64
65
66         <dependency>
67             <groupId>junit</groupId>
68             <artifactId>junit</artifactId>
69             <scope>test</scope>
70         </dependency>
71     </dependencies>
72 </project>
73