Integrate LoopRemover module with config subsystem.
[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.1.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.controller.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   </dependencies>
72
73   <build>
74     <plugins>
75       <plugin>
76         <groupId>org.apache.felix</groupId>
77         <artifactId>maven-bundle-plugin</artifactId>
78         <extensions>true</extensions>
79         <configuration>
80           <instructions>
81             <Export-Package>org.opendaylight.yang.gen.v1.urn.opendaylight.packet.packet.handler.impl.rev140528</Export-Package>
82             <Import-Package>*</Import-Package>
83           </instructions>
84         </configuration>
85       </plugin>
86       <plugin>
87         <groupId>org.opendaylight.yangtools</groupId>
88         <artifactId>yang-maven-plugin</artifactId>
89         <version>${yangtools.version}</version>
90         <executions>
91           <execution>
92             <goals>
93               <goal>generate-sources</goal>
94             </goals>
95             <configuration>
96               <codeGenerators>
97                 <generator>
98                   <codeGeneratorClass>
99                     org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
100                   </codeGeneratorClass>
101                   <outputBaseDir>${project.build.directory}/generated-sources/config</outputBaseDir>
102                   <additionalConfiguration>
103                     <namespaceToPackage1>
104                       urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang
105                     </namespaceToPackage1>
106                   </additionalConfiguration>
107                 </generator>
108                 <generator>
109                   <codeGeneratorClass>
110                     org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl
111                   </codeGeneratorClass>
112                   <outputBaseDir>${project.build.directory}/generated-sources/sal</outputBaseDir>
113                 </generator>
114               </codeGenerators>
115               <inspectDependencies>true</inspectDependencies>
116             </configuration>
117           </execution>
118         </executions>
119         <dependencies>
120           <dependency>
121             <groupId>org.opendaylight.controller</groupId>
122             <artifactId>yang-jmx-generator-plugin</artifactId>
123             <version>0.2.5-SNAPSHOT</version>
124           </dependency>
125           <dependency>
126             <groupId>org.opendaylight.yangtools</groupId>
127             <artifactId>maven-sal-api-gen-plugin</artifactId>
128             <version>${yangtools.version}</version>
129             <type>jar</type>
130           </dependency>
131         </dependencies>
132       </plugin>
133     </plugins>
134   </build>
135
136 </project>