BUG2607: Now using the right constant for no buffer
[l2switch.git] / loopremover / 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.2.0-SNAPSHOT</version>
9     <relativePath>../../parent</relativePath>
10   </parent>
11   <modelVersion>4.0.0</modelVersion>
12
13   <groupId>org.opendaylight.l2switch.loopremover</groupId>
14   <artifactId>loopremover-impl</artifactId>
15
16   <packaging>bundle</packaging>
17
18   <dependencies>
19     <dependency>
20       <groupId>org.osgi</groupId>
21       <artifactId>org.osgi.core</artifactId>
22       <scope>provided</scope>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.controller</groupId>
26       <artifactId>sal-binding-api</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.controller.model</groupId>
30       <artifactId>model-flow-service</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.controller.model</groupId>
34       <artifactId>model-topology</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.yangtools</groupId>
38       <artifactId>yang-common</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.controller.thirdparty</groupId>
42       <artifactId>net.sf.jung2</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.l2switch.loopremover</groupId>
46       <artifactId>loopremover-model</artifactId>
47       <version>${project.version}</version>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.controller</groupId>
51       <artifactId>config-api</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>sal-binding-config</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>junit</groupId>
59       <artifactId>junit</artifactId>
60       <scope>test</scope>
61     </dependency>
62     <dependency>
63       <groupId>org.mockito</groupId>
64       <artifactId>mockito-all</artifactId>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.openflowplugin</groupId>
69       <artifactId>openflowplugin-api</artifactId>
70       <version>${openflow.plugin.version}</version>
71     </dependency>
72   </dependencies>
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.loop.remover.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>${configCodeGeneratorPath}</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>${codeGeneratorPath}</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.3.0-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>