Remove config subsystem from OpenFlowJava
[openflowplugin.git] / openflowjava / openflow-protocol-impl / pom.xml
1 <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">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4         <groupId>org.opendaylight.openflowplugin.openflowjava</groupId>
5         <artifactId>openflowjava-parent</artifactId>
6         <version>0.5.0-SNAPSHOT</version>
7         <relativePath>../</relativePath>
8     </parent>
9     <artifactId>openflow-protocol-impl</artifactId>
10     <packaging>bundle</packaging>
11     <!-- <name> formatting is used by autorelease to parse and notify projects on
12          build failure. Please do not modify this unless you have a good reason. -->
13     <name>ODL :: openflowjava :: ${project.artifactId}</name>
14     <scm>
15         <url>https://wiki.opendaylight.org/view/Openflow_Protocol_Library:Main</url>
16       <tag>HEAD</tag>
17   </scm>
18
19     <build>
20         <plugins>
21             <plugin>
22               <groupId>org.apache.felix</groupId>
23               <artifactId>maven-bundle-plugin</artifactId>
24               <extensions>true</extensions>
25               <configuration>
26                 <instructions>
27                     <Export-Package>
28                       org.opendaylight.openflowjava.protocol.impl.*,
29                     </Export-Package>
30                 </instructions>
31               </configuration>
32             </plugin>
33             <plugin>
34                 <groupId>org.opendaylight.yangtools</groupId>
35                 <artifactId>yang-maven-plugin</artifactId>
36                 <executions>
37                     <execution>
38                         <goals>
39                             <goal>generate-sources</goal>
40                         </goals>
41                         <configuration>
42                             <codeGenerators>
43                                 <generator>
44                                     <codeGeneratorClass>
45                                         org.opendaylight.mdsal.binding.maven.api.gen.plugin.CodeGeneratorImpl
46                                     </codeGeneratorClass>
47                                     <outputBaseDir>${salGeneratorPath}</outputBaseDir>
48                                 </generator>
49                                 <generator>
50                                     <codeGeneratorClass>org.opendaylight.mdsal.binding.yang.unified.doc.generator.maven.DocumentationGeneratorImpl</codeGeneratorClass>
51                                     <outputBaseDir>${project.build.directory}/site/models</outputBaseDir>
52                                 </generator>
53                             </codeGenerators>
54                             <inspectDependencies>true</inspectDependencies>
55                         </configuration>
56                     </execution>
57                 </executions>
58                 <dependencies>
59                     <dependency>
60                         <groupId>org.opendaylight.mdsal</groupId>
61                         <artifactId>maven-sal-api-gen-plugin</artifactId>
62                         <version>${mdsal.model.version}</version>
63                         <type>jar</type>
64                     </dependency>
65                 </dependencies>
66             </plugin>
67             <plugin>
68                 <groupId>org.apache.maven.plugins</groupId>
69                 <artifactId>maven-jar-plugin</artifactId>
70                 <executions>
71                     <execution>
72                         <goals>
73                             <goal>test-jar</goal>
74                         </goals>
75                     </execution>
76                 </executions>
77             </plugin>
78         </plugins>
79     </build>
80
81     <dependencies>
82         <dependency>
83             <groupId>${project.groupId}</groupId>
84             <artifactId>openflow-protocol-api</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>${project.groupId}</groupId>
88             <artifactId>openflow-protocol-spi</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>${project.groupId}</groupId>
92             <artifactId>openflowjava-util</artifactId>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.controller</groupId>
96             <artifactId>sal-common-util</artifactId>
97             <exclusions>
98                 <exclusion>
99                     <groupId>org.opendaylight.controller</groupId>
100                     <artifactId>sal-common-api</artifactId>
101                 </exclusion>
102                 <exclusion>
103                     <groupId>org.opendaylight.yangtools</groupId>
104                     <artifactId>concepts</artifactId>
105                 </exclusion>
106             </exclusions>
107         </dependency>
108         <dependency>
109             <groupId>io.netty</groupId>
110             <artifactId>netty-handler</artifactId>
111         </dependency>
112         <dependency>
113             <groupId>org.osgi</groupId>
114             <artifactId>org.osgi.core</artifactId>
115         </dependency>
116         <dependency>
117             <groupId>org.slf4j</groupId>
118             <artifactId>slf4j-log4j12</artifactId>
119             <scope>test</scope>
120         </dependency>
121         <dependency>
122             <groupId>com.google.guava</groupId>
123             <artifactId>guava</artifactId>
124         </dependency>
125         <dependency>
126             <groupId>junit</groupId>
127             <artifactId>junit</artifactId>
128             <scope>test</scope>
129         </dependency>
130         <dependency>
131             <groupId>org.mockito</groupId>
132             <artifactId>mockito-core</artifactId>
133         </dependency>
134         <dependency>
135             <groupId>org.opendaylight.controller</groupId>
136             <artifactId>config-api</artifactId>
137         </dependency>
138         <dependency>
139             <groupId>io.netty</groupId>
140             <artifactId>netty-transport-native-epoll</artifactId>
141             <!-- Explicitly bring in the linux classifier, test may fail on 32-bit linux -->
142             <classifier>linux-x86_64</classifier>
143         </dependency>
144     </dependencies>
145 </project>