Incrementing versions by 0.1.0 for post-lithium master branch
[l2switch.git] / arphandler / implementation / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5   <parent>
6     <groupId>org.opendaylight.l2switch</groupId>
7     <artifactId>l2switch-parent</artifactId>
8     <version>0.3.0-SNAPSHOT</version>
9     <relativePath>../../parent</relativePath>
10   </parent>
11   <modelVersion>4.0.0</modelVersion>
12
13   <groupId>org.opendaylight.l2switch.arphandler</groupId>
14   <artifactId>arphandler-impl</artifactId>
15   <packaging>bundle</packaging>
16
17   <dependencies>
18     <dependency>
19       <groupId>org.opendaylight.controller</groupId>
20       <artifactId>config-api</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>org.opendaylight.controller</groupId>
24       <artifactId>sal-binding-config</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>sal-binding-api</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.openflowplugin.model</groupId>
32       <artifactId>model-flow-service</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.controller.model</groupId>
36       <artifactId>model-topology</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.yangtools</groupId>
40       <artifactId>yang-common</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.l2switch.packethandler</groupId>
44       <artifactId>packethandler-model</artifactId>
45       <version>${project.version}</version>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.l2switch.addresstracker</groupId>
49       <artifactId>addresstracker-model</artifactId>
50       <version>${project.version}</version>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.l2switch.loopremover</groupId>
54       <artifactId>loopremover-model</artifactId>
55       <version>${project.version}</version>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller.thirdparty</groupId>
59       <artifactId>net.sf.jung2</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>junit</groupId>
63       <artifactId>junit</artifactId>
64       <scope>test</scope>
65     </dependency>
66     <dependency>
67       <groupId>org.mockito</groupId>
68       <artifactId>mockito-all</artifactId>
69       <scope>test</scope>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.openflowplugin</groupId>
73       <artifactId>openflowplugin-api</artifactId>
74     </dependency>
75   </dependencies>
76
77   <build>
78     <plugins>
79       <plugin>
80         <groupId>org.apache.felix</groupId>
81         <artifactId>maven-bundle-plugin</artifactId>
82         <extensions>true</extensions>
83         <configuration>
84           <instructions>
85             <Export-Package>org.opendaylight.yang.gen.v1.urn.opendaylight.packet.packet.handler.impl.rev140528</Export-Package>
86             <Import-Package>*</Import-Package>
87           </instructions>
88         </configuration>
89       </plugin>
90       <plugin>
91         <groupId>org.opendaylight.yangtools</groupId>
92         <artifactId>yang-maven-plugin</artifactId>
93         <version>${yangtools.version}</version>
94         <executions>
95           <execution>
96             <goals>
97               <goal>generate-sources</goal>
98             </goals>
99             <configuration>
100               <codeGenerators>
101                 <generator>
102                   <codeGeneratorClass>
103                     org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
104                   </codeGeneratorClass>
105                   <outputBaseDir>${configCodeGeneratorPath}</outputBaseDir>
106                   <additionalConfiguration>
107                     <namespaceToPackage1>
108                       urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang
109                     </namespaceToPackage1>
110                   </additionalConfiguration>
111                 </generator>
112                 <generator>
113                   <codeGeneratorClass>
114                     org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl
115                   </codeGeneratorClass>
116                   <outputBaseDir>${codeGeneratorPath}</outputBaseDir>
117                 </generator>
118               </codeGenerators>
119               <inspectDependencies>true</inspectDependencies>
120             </configuration>
121           </execution>
122         </executions>
123         <dependencies>
124           <dependency>
125             <groupId>org.opendaylight.controller</groupId>
126             <artifactId>yang-jmx-generator-plugin</artifactId>
127             <version>0.4.0-SNAPSHOT</version>
128           </dependency>
129           <dependency>
130             <groupId>org.opendaylight.yangtools</groupId>
131             <artifactId>maven-sal-api-gen-plugin</artifactId>
132             <version>${yangtools.version}</version>
133             <type>jar</type>
134           </dependency>
135         </dependencies>
136       </plugin>
137     </plugins>
138   </build>
139
140 </project>