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