BUG-2637: Create features for migrated apps
[openflowplugin.git] / openflowplugin / 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.1.0-SNAPSHOT</version>
8         <relativePath>../</relativePath>
9     </parent>
10
11     <artifactId>openflowplugin</artifactId>
12     <packaging>bundle</packaging>
13
14     <properties>
15         <yangtools.version>0.7.0-SNAPSHOT</yangtools.version>
16         <yangtools.generator.version>0.7.0-SNAPSHOT</yangtools.generator.version>
17         <yangtools.binding.version>0.7.0-SNAPSHOT</yangtools.binding.version>
18         <jmxGeneratorPath>${project.build.directory}/generated-sources/config</jmxGeneratorPath>
19         <sal-binding-api.version>1.2.0-SNAPSHOT</sal-binding-api.version>
20     </properties>
21
22     <build>
23         <plugins>
24             <plugin>
25                 <groupId>org.apache.felix</groupId>
26                 <artifactId>maven-bundle-plugin</artifactId>
27             </plugin>
28             <plugin>
29                 <groupId>org.opendaylight.yangtools</groupId>
30                 <artifactId>yang-maven-plugin</artifactId>
31                 <executions>
32                     <execution>
33                         <goals>
34                             <goal>generate-sources</goal>
35                         </goals>
36                         <configuration>
37                             <codeGenerators>
38                                 <generator>
39                                     <codeGeneratorClass>
40                                         org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
41                                     </codeGeneratorClass>
42                                     <outputBaseDir>${project.build.directory}/generated-sources/config</outputBaseDir>
43                                     <additionalConfiguration>
44                                         <namespaceToPackage1>
45                                             urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang
46                                         </namespaceToPackage1>
47                                     </additionalConfiguration>
48                                 </generator>
49                                 <generator>
50                                     <codeGeneratorClass>
51                                         org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl
52                                     </codeGeneratorClass>
53                                     <outputBaseDir>${project.build.directory}/generated-sources/sal</outputBaseDir>
54                                 </generator>
55                                 <generator>
56                                     <codeGeneratorClass>org.opendaylight.yangtools.yang.unified.doc.generator.maven.DocumentationGeneratorImpl</codeGeneratorClass>
57                                     <outputBaseDir>${project.build.directory}/site/models</outputBaseDir>
58                                 </generator>
59                             </codeGenerators>
60                             <inspectDependencies>true</inspectDependencies>
61                         </configuration>
62                     </execution>
63                 </executions>
64                 <dependencies>
65                     <dependency>
66                         <groupId>org.opendaylight.controller</groupId>
67                         <artifactId>yang-jmx-generator-plugin</artifactId>
68                         <version>${config.parent.version}</version>
69                     </dependency>
70                     <dependency>
71                         <groupId>org.opendaylight.yangtools</groupId>
72                         <artifactId>maven-sal-api-gen-plugin</artifactId>
73                         <version>${yangtools.version}</version>
74                         <type>jar</type>
75                     </dependency>
76                 </dependencies>
77             </plugin>
78         </plugins>
79     </build>
80     <dependencies>
81         <dependency>
82             <groupId>org.opendaylight.openflowplugin</groupId>
83             <artifactId>openflowplugin-api</artifactId>
84             <version>${project.version}</version>
85         </dependency>
86         <dependency>
87             <groupId>org.opendaylight.openflowplugin</groupId>
88             <artifactId>openflowplugin-extension-api</artifactId>
89             <version>${project.version}</version>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.openflowplugin.model</groupId>
93             <artifactId>model-flow-base</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>org.opendaylight.openflowplugin.model</groupId>
97             <artifactId>model-flow-service</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.openflowplugin.model</groupId>
101             <artifactId>model-flow-statistics</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.controller.model</groupId>
105             <artifactId>model-inventory</artifactId>
106         </dependency>
107         <dependency>
108             <groupId>org.opendaylight.controller</groupId>
109             <artifactId>sal-binding-api</artifactId>
110         </dependency>
111         <dependency>
112             <groupId>org.opendaylight.controller</groupId>
113             <artifactId>sal-binding-broker-impl</artifactId>
114             <version>${sal-binding-api.version}</version>
115         </dependency>
116
117         <dependency>
118             <groupId>org.opendaylight.openflowjava</groupId>
119             <artifactId>openflow-protocol-api</artifactId>
120         </dependency>
121         <dependency>
122             <groupId>org.opendaylight.openflowjava</groupId>
123             <artifactId>openflow-protocol-spi</artifactId>
124         </dependency>
125         <dependency>
126             <groupId>org.opendaylight.openflowjava</groupId>
127             <artifactId>openflow-protocol-impl</artifactId>
128         </dependency>
129         <dependency>
130             <groupId>org.opendaylight.controller</groupId>
131             <artifactId>config-api</artifactId>
132         </dependency>
133
134         <dependency>
135             <groupId>com.google.guava</groupId>
136             <artifactId>guava</artifactId>
137         </dependency>
138         <dependency>
139             <groupId>org.apache.commons</groupId>
140             <artifactId>commons-lang3</artifactId>
141         </dependency>
142
143         <dependency>
144             <groupId>junit</groupId>
145             <artifactId>junit</artifactId>
146             <scope>test</scope>
147         </dependency>
148         <dependency>
149             <groupId>org.mockito</groupId>
150             <artifactId>mockito-all</artifactId>
151             <scope>test</scope>
152         </dependency>
153
154         <dependency>
155             <groupId>org.slf4j</groupId>
156             <artifactId>slf4j-log4j12</artifactId>
157         </dependency>
158         <dependency>
159             <groupId>org.opendaylight.controller</groupId>
160             <artifactId>sal-common-util</artifactId>
161         </dependency>
162         <dependency>
163             <groupId>org.opendaylight.openflowjava</groupId>
164             <artifactId>util</artifactId>
165         </dependency>
166
167     </dependencies>
168 </project>
169