Refactor one of the field names in ipv4packet yang file.
[l2switch.git] / ipv4decoder / 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.l2switch</groupId>
6     <artifactId>l2switch-parent</artifactId>
7     <version>0.1.0-SNAPSHOT</version>
8     <relativePath>../../parent</relativePath>
9   </parent>
10   <groupId>org.opendaylight.l2switch.ipv4decoder</groupId>
11   <artifactId>ipv4decoder-impl</artifactId>
12   <packaging>bundle</packaging>
13
14   <dependencies>
15     <dependency>
16       <groupId>org.opendaylight.controller</groupId>
17       <artifactId>sal</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.opendaylight.l2switch.ipv4decoder</groupId>
21       <artifactId>ipv4decoder-model</artifactId>
22       <version>${project.version}</version>
23     </dependency>
24     <dependency>
25       <groupId>junit</groupId>
26       <artifactId>junit</artifactId>
27       <scope>test</scope>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.controller</groupId>
31       <artifactId>sal-binding-api</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.controller.model</groupId>
35       <artifactId>model-flow-service</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.l2switch.packethandler</groupId>
39       <artifactId>packethandler-model</artifactId>
40       <version>${project.version}</version>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.l2switch.packethandler</groupId>
44       <artifactId>packethandler-impl</artifactId>
45       <version>${project.version}</version>
46     </dependency>
47
48   </dependencies>
49
50   <build>
51     <plugins>
52       <plugin>
53         <groupId>org.apache.felix</groupId>
54         <artifactId>maven-bundle-plugin</artifactId>
55         <extensions>true</extensions>
56         <configuration>
57           <instructions>
58             <Bundle-Activator>org.opendaylight.l2switch.ipv4decoder.Ipv4DecoderProvider</Bundle-Activator>
59           </instructions>
60           <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
61         </configuration>
62       </plugin>
63     </plugins>
64   </build>
65
66 </project>