ConnectionManager proposal
[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.1.0-SNAPSHOT</version>
8         <relativePath>../</relativePath>
9     </parent>
10
11     <artifactId>openflowplugin-impl</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             <!-- to be deprecated -->
88             <groupId>org.opendaylight.openflowplugin</groupId>
89             <artifactId>openflowplugin</artifactId>
90             <version>${project.version}</version>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.openflowplugin</groupId>
94             <artifactId>openflowplugin-extension-api</artifactId>
95             <version>${project.version}</version>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.openflowplugin.model</groupId>
99             <artifactId>model-flow-base</artifactId>
100         </dependency>
101         <dependency>
102             <groupId>org.opendaylight.openflowplugin.model</groupId>
103             <artifactId>model-flow-service</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>org.opendaylight.openflowplugin.model</groupId>
107             <artifactId>model-flow-statistics</artifactId>
108         </dependency>
109         <dependency>
110             <groupId>org.opendaylight.controller.model</groupId>
111             <artifactId>model-inventory</artifactId>
112         </dependency>
113         <dependency>
114             <groupId>org.opendaylight.controller</groupId>
115             <artifactId>sal-binding-api</artifactId>
116         </dependency>
117         <dependency>
118             <groupId>org.opendaylight.controller</groupId>
119             <artifactId>sal-binding-broker-impl</artifactId>
120             <version>${sal-binding-api.version}</version>
121         </dependency>
122
123         <dependency>
124             <groupId>org.opendaylight.openflowjava</groupId>
125             <artifactId>openflow-protocol-api</artifactId>
126         </dependency>
127         <dependency>
128             <groupId>org.opendaylight.openflowjava</groupId>
129             <artifactId>openflow-protocol-spi</artifactId>
130         </dependency>
131         <dependency>
132             <groupId>org.opendaylight.controller</groupId>
133             <artifactId>config-api</artifactId>
134         </dependency>
135
136         <dependency>
137             <groupId>com.google.guava</groupId>
138             <artifactId>guava</artifactId>
139         </dependency>
140         <dependency>
141             <groupId>org.apache.commons</groupId>
142             <artifactId>commons-lang3</artifactId>
143         </dependency>
144
145         <dependency>
146             <groupId>junit</groupId>
147             <artifactId>junit</artifactId>
148             <scope>test</scope>
149         </dependency>
150         <dependency>
151             <groupId>org.mockito</groupId>
152             <artifactId>mockito-all</artifactId>
153             <scope>test</scope>
154         </dependency>
155
156         <dependency>
157             <groupId>org.slf4j</groupId>
158             <artifactId>slf4j-log4j12</artifactId>
159             <scope>test</scope>
160         </dependency>
161         <dependency>
162             <groupId>org.opendaylight.controller</groupId>
163             <artifactId>sal-common-util</artifactId>
164         </dependency>
165         <dependency>
166             <groupId>org.opendaylight.openflowjava</groupId>
167             <artifactId>util</artifactId>
168         </dependency>
169
170     </dependencies>
171 </project>
172