Bump versions by x.(y+1).z for next dev cycle
[openflowplugin.git] / openflowplugin-impl / 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>openflowplugin-impl</artifactId>
12     <packaging>bundle</packaging>
13
14     <build>
15         <plugins>
16             <plugin>
17                 <groupId>org.apache.felix</groupId>
18                 <artifactId>maven-bundle-plugin</artifactId>
19                 <extensions>true</extensions>
20                 <configuration>
21                     <instructions>
22                         <!-- This bundle works with Karaf 3 and 4.0 -->
23                         <Import-Package>
24                             org.apache.karaf.shell.commands;version="[3.0.0,4.1)",
25                             org.apache.karaf.shell.console;version="[3.0.0,4.1)",
26                             *
27                         </Import-Package>
28                     </instructions>
29                 </configuration>
30             </plugin>
31             <plugin>
32                 <groupId>org.opendaylight.yangtools</groupId>
33                 <artifactId>yang-maven-plugin</artifactId>
34                 <executions>
35                     <execution>
36                         <goals>
37                             <goal>generate-sources</goal>
38                         </goals>
39                         <configuration>
40                             <codeGenerators>
41                                 <generator>
42                                     <codeGeneratorClass>
43                                         org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
44                                     </codeGeneratorClass>
45                                     <outputBaseDir>${project.build.directory}/generated-sources/config</outputBaseDir>
46                                     <additionalConfiguration>
47                                         <namespaceToPackage1>
48                                             urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang
49                                         </namespaceToPackage1>
50                                     </additionalConfiguration>
51                                 </generator>
52                                 <generator>
53                                     <codeGeneratorClass>
54                                         org.opendaylight.mdsal.binding.maven.api.gen.plugin.CodeGeneratorImpl
55                                     </codeGeneratorClass>
56                                     <outputBaseDir>${project.build.directory}/generated-sources/sal</outputBaseDir>
57                                 </generator>
58                                 <generator>
59                                     <codeGeneratorClass>org.opendaylight.mdsal.binding.yang.unified.doc.generator.maven.DocumentationGeneratorImpl</codeGeneratorClass>
60                                     <outputBaseDir>${project.build.directory}/site/models</outputBaseDir>
61                                 </generator>
62                             </codeGenerators>
63                             <inspectDependencies>true</inspectDependencies>
64                         </configuration>
65                     </execution>
66                 </executions>
67                 <dependencies>
68                     <dependency>
69                         <groupId>org.opendaylight.controller</groupId>
70                         <artifactId>yang-jmx-generator-plugin</artifactId>
71                         <version>${config.version}</version>
72                     </dependency>
73                     <dependency>
74                         <groupId>org.opendaylight.mdsal</groupId>
75                         <artifactId>maven-sal-api-gen-plugin</artifactId>
76                         <version>${mdsal.model.version}</version>
77                         <type>jar</type>
78                     </dependency>
79                 </dependencies>
80             </plugin>
81         </plugins>
82     </build>
83     <dependencies>
84         <dependency>
85             <groupId>org.opendaylight.openflowplugin</groupId>
86             <artifactId>openflowplugin-api</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.openflowplugin</groupId>
90             <artifactId>openflowplugin</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.openflowplugin</groupId>
94             <artifactId>openflowplugin-extension-api</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>org.opendaylight.openflowplugin.model</groupId>
98             <artifactId>model-flow-base</artifactId>
99         </dependency>
100         <dependency>
101             <groupId>org.opendaylight.openflowplugin.model</groupId>
102             <artifactId>model-flow-service</artifactId>
103         </dependency>
104         <dependency>
105             <groupId>org.opendaylight.openflowplugin.model</groupId>
106             <artifactId>model-flow-statistics</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>org.opendaylight.controller.model</groupId>
110             <artifactId>model-inventory</artifactId>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.controller</groupId>
114             <artifactId>sal-binding-api</artifactId>
115         </dependency>
116         <dependency>
117             <groupId>org.opendaylight.controller</groupId>
118             <artifactId>sal-binding-config</artifactId>
119         </dependency>
120         <dependency>
121             <groupId>org.opendaylight.controller</groupId>
122             <artifactId>sal-binding-broker-impl</artifactId>
123         </dependency>
124
125         <dependency>
126             <groupId>org.opendaylight.openflowjava</groupId>
127             <artifactId>openflow-protocol-api</artifactId>
128         </dependency>
129         <dependency>
130             <groupId>org.opendaylight.openflowjava</groupId>
131             <artifactId>openflow-protocol-spi</artifactId>
132         </dependency>
133         <dependency>
134             <groupId>org.opendaylight.controller</groupId>
135             <artifactId>config-api</artifactId>
136         </dependency>
137         <dependency>
138             <groupId>org.apache.karaf.shell</groupId>
139             <artifactId>org.apache.karaf.shell.console</artifactId>
140             <version>${karaf.version}</version>
141         </dependency>
142         <dependency>
143             <groupId>com.google.guava</groupId>
144             <artifactId>guava</artifactId>
145         </dependency>
146         <dependency>
147             <groupId>org.apache.commons</groupId>
148             <artifactId>commons-lang3</artifactId>
149         </dependency>
150
151         <dependency>
152             <groupId>junit</groupId>
153             <artifactId>junit</artifactId>
154             <scope>test</scope>
155         </dependency>
156         <dependency>
157             <groupId>org.mockito</groupId>
158             <artifactId>mockito-core</artifactId>
159             <scope>test</scope>
160         </dependency>
161
162         <dependency>
163             <groupId>org.slf4j</groupId>
164             <artifactId>slf4j-log4j12</artifactId>
165             <scope>test</scope>
166         </dependency>
167         <dependency>
168             <groupId>org.opendaylight.controller</groupId>
169             <artifactId>sal-common-util</artifactId>
170         </dependency>
171         <dependency>
172             <groupId>org.opendaylight.openflowjava</groupId>
173             <artifactId>openflowjava-util</artifactId>
174         </dependency>
175         <dependency>
176             <groupId>org.opendaylight.controller</groupId>
177             <artifactId>sal-common-api</artifactId>
178         </dependency>
179         <dependency>
180             <groupId>org.opendaylight.openflowjava</groupId>
181             <artifactId>openflow-protocol-impl</artifactId>
182         </dependency>
183     </dependencies>
184 </project>
185