ConnectionAdapterImpl is always bound to a channel
[openflowjava.git] / 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     <groupId>org.opendaylight.openflowjava</groupId>
4     <artifactId>openflow-protocol-parent</artifactId>
5     <version>0.5-SNAPSHOT</version>
6     <packaging>pom</packaging>
7     <modules>
8         <module>openflow-protocol-api</module>
9         <module>openflow-protocol-spi</module>
10         <module>openflow-protocol-impl</module>
11         <module>openflow-protocol-it</module>
12         <module>feature</module>
13         <module>simple-client</module>
14     </modules>
15     <scm>
16         <connection>scm:git:ssh://git.opendaylight.org:29418/openflowjava.git</connection>
17         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowjava.git</developerConnection>
18         <url>https://wiki.opendaylight.org/view/Openflow_Protocol_Library:Main</url>
19       <tag>HEAD</tag>
20     </scm>
21
22     <properties>
23         <sonar.host.url>https://sonar.opendaylight.org/</sonar.host.url>
24         <nexusproxy>http://nexus.opendaylight.org/content</nexusproxy>
25         <sitedeploy>dav:http://nexus.opendaylight.org/content/sites/site</sitedeploy>
26         <siteplugin>3.2</siteplugin>
27         <projectinfo>2.6</projectinfo>
28         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
29         <compiler.version>2.3.2</compiler.version>
30         <surefire.version>2.13</surefire.version>
31         <exam.version>3.0.0</exam.version>
32         <url.version>1.5.0</url.version>
33         <enunciate.version>1.26.2</enunciate.version>
34         <sonar.branch>${user.name}-private-view</sonar.branch>
35         <sonar.skippedModules>org.openflow.openflowj,net.sf.jung2</sonar.skippedModules>
36         <logback.version>1.0.9</logback.version>
37         <slf4j.version>1.7.2</slf4j.version>
38         <yang.prototype.version>1.1-SNAPSHOT</yang.prototype.version>
39         <ietf.model.version>2010.09.24.4-SNAPSHOT</ietf.model.version>
40         <maven.bundle.version>2.4.0</maven.bundle.version>
41         <guava.version>14.0.1</guava.version> 
42         <netty.version>4.0.17.Final</netty.version>
43         <releaseplugin.version>2.3.2</releaseplugin.version>
44         <yangtools.version>0.6.2-SNAPSHOT</yangtools.version>
45         <yangtools.generator.version>0.6.2-SNAPSHOT</yangtools.generator.version>
46         <config.version>0.2.5-SNAPSHOT</config.version>
47     </properties>
48
49     <pluginRepositories>
50         <!-- Opendaylight public group -->
51         <pluginRepository>
52             <id>odlPublic</id>
53             <name>odlPublic</name>
54             <url>${nexusproxy}/groups/public/</url>
55             <snapshots>
56               <enabled>false</enabled>
57             </snapshots>
58         </pluginRepository>
59         <!-- OpenDayLight Snapshot artifact -->
60         <pluginRepository>
61             <id>opendaylight-snapshot</id>
62             <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
63             <releases>
64               <enabled>false</enabled>
65             </releases>
66         </pluginRepository>
67     </pluginRepositories>
68
69
70     <repositories>
71         <!-- Opendaylight public group -->
72         <repository>
73             <id>odlPublic</id>
74             <name>odlPublic</name>
75             <url>${nexusproxy}/groups/public/</url>
76             <snapshots>
77               <enabled>false</enabled>
78             </snapshots>
79         </repository>
80         <!-- OpenDayLight Snapshot artifact -->
81         <repository>
82             <id>opendaylight-snapshot</id>
83             <name>opendaylight-snapshot</name>
84             <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
85             <releases>
86               <enabled>false</enabled>
87             </releases>
88         </repository>
89     </repositories>
90     <distributionManagement>
91         <!-- OpenDayLight Released artifact -->
92         <repository>
93             <id>opendaylight-release</id>
94             <url>${nexusproxy}/repositories/opendaylight.release/</url>
95         </repository>
96         <!-- OpenDayLight Snapshot artifact -->
97         <snapshotRepository>
98             <id>opendaylight-snapshot</id>
99             <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
100         </snapshotRepository>
101         <!-- Site deployment -->
102         <!-- site>
103             <id>website</id>
104             <url>${sitedeploy}</url>
105         </site -->
106     </distributionManagement>
107
108
109     <dependencyManagement>
110         <dependencies>
111             <dependency>
112                 <groupId>org.slf4j</groupId>
113                 <artifactId>slf4j-api</artifactId>
114                 <version>${slf4j.version}</version>
115             </dependency>
116             <dependency>
117                 <groupId>io.netty</groupId>
118                 <artifactId>netty-buffer</artifactId>
119                 <version>${netty.version}</version>
120             </dependency>
121             <dependency>
122                 <groupId>io.netty</groupId>
123                 <artifactId>netty-handler</artifactId>
124                 <version>${netty.version}</version>
125             </dependency>
126             <dependency>
127                 <groupId>com.google.guava</groupId>
128                 <artifactId>guava</artifactId>
129                 <version>${guava.version}</version>
130             </dependency>
131             <dependency>
132                 <groupId>org.opendaylight.yangtools.model</groupId>
133                 <artifactId>ietf-inet-types</artifactId>
134                 <version>${ietf.model.version}</version>
135             </dependency>
136             <dependency>
137                 <groupId>org.opendaylight.yangtools.model</groupId>
138                 <artifactId>ietf-yang-types</artifactId>
139                 <version>${ietf.model.version}</version>
140             </dependency>
141             <dependency>
142                 <groupId>org.osgi</groupId>
143                 <artifactId>org.osgi.core</artifactId>
144                 <version>5.0.0</version>
145             </dependency>
146             <dependency>
147                 <groupId>org.opendaylight.controller.model</groupId>
148                 <artifactId>model-flow-service</artifactId>
149                 <version>1.1-SNAPSHOT</version>
150             </dependency>
151             <dependency>
152                 <groupId>junit</groupId>
153                 <artifactId>junit</artifactId>
154                 <version>4.10</version>
155                 <scope>test</scope>
156                 <optional>true</optional>
157             </dependency>
158             <dependency>
159                 <groupId>org.mockito</groupId>
160                 <artifactId>mockito-all</artifactId>
161                 <version>1.9.5</version>
162                 <scope>test</scope>
163             </dependency>
164         </dependencies>
165     </dependencyManagement>
166     <build>
167         <plugins>
168             <plugin>
169                 <groupId>org.apache.maven.plugins</groupId>
170                 <artifactId>maven-compiler-plugin</artifactId>
171                 <version>${compiler.version}</version>
172                 <inherited>true</inherited>
173                 <configuration>
174                     <source>1.7</source>
175                     <target>1.7</target>
176                 </configuration>
177             </plugin>
178             <plugin>
179                 <artifactId>maven-source-plugin</artifactId>
180                 <executions>
181                     <execution>
182                         <id>attach-sources</id>
183                         <phase>deploy</phase>
184                         <goals>
185                             <goal>jar-no-fork</goal>
186                         </goals> 
187                     </execution>
188                 </executions>
189             </plugin>
190             <plugin>
191               <groupId>org.apache.felix</groupId>
192               <artifactId>maven-bundle-plugin</artifactId>
193               <version>${maven.bundle.version}</version>
194               <extensions>true</extensions>
195               <configuration>
196                 <instructions>
197                   <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
198                 </instructions>
199                 <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
200               </configuration>
201             </plugin>
202         </plugins>
203         <pluginManagement>
204             <plugins>
205                 <plugin>
206                     <groupId>org.apache.maven.plugins</groupId>
207                     <artifactId>maven-source-plugin</artifactId>
208                     <version>2.2.1</version>
209                 </plugin>
210                 <plugin>
211                     <groupId>org.apache.maven.plugins</groupId>
212                     <artifactId>maven-deploy-plugin</artifactId>
213                     <version>2.7</version>
214                 </plugin>
215                 <plugin>
216                     <groupId>org.apache.maven.plugins</groupId>
217                     <artifactId>maven-jar-plugin</artifactId>
218                     <version>2.4</version>
219                 </plugin>
220                 <plugin>
221                     <groupId>org.apache.maven.plugins</groupId>
222                     <artifactId>maven-release-plugin</artifactId>
223                     <version>${releaseplugin.version}</version>
224                 </plugin>
225                 <plugin>
226                     <groupId>org.opendaylight.yangtools</groupId>
227                     <artifactId>yang-maven-plugin</artifactId>
228                     <version>${yangtools.version}</version>
229                 </plugin>
230                 <plugin>
231                     <groupId>org.apache.felix</groupId>
232                     <artifactId>maven-bundle-plugin</artifactId>
233                     <version>${maven.bundle.version}</version>
234                 </plugin>
235             </plugins>
236         </pluginManagement>
237     </build>
238     <reporting>
239         <plugins>
240             <plugin>
241                 <groupId>org.codehaus.mojo</groupId>
242                 <artifactId>findbugs-maven-plugin</artifactId>
243                 <version>2.5.2</version>
244                 <configuration>
245                     <effort>Max</effort>
246                     <threshold>Low</threshold>
247                     <goal>site</goal>
248                 </configuration>
249             </plugin>
250             <plugin>
251               <artifactId>maven-jxr-plugin</artifactId>
252               <version>2.3</version>
253               <configuration>
254                 <aggregate>true</aggregate>
255                 <linkJavadoc>true</linkJavadoc>
256               </configuration>
257             </plugin>
258
259             <plugin>
260                 <groupId>org.codehaus.mojo</groupId>
261                 <artifactId>jdepend-maven-plugin</artifactId>
262                 <version>2.0-beta-2</version>
263             </plugin>
264         </plugins>
265     </reporting>
266     <profiles>
267         <profile>
268             <id>viewbuild</id>
269             <activation>
270                 <activeByDefault>true</activeByDefault>
271             </activation>
272             <properties>
273                 <build.suffix>${project.version}</build.suffix>
274             </properties>
275         </profile>
276         <profile>
277             <id>jenkins</id>
278             <activation>
279                 <property>
280                     <name>BUILDSUFFIX</name>
281                 </property>
282             </activation>
283             <properties>
284                 <build.suffix>${BUILDSUFFIX}</build.suffix>
285             </properties>
286         </profile>
287         <profile>
288             <id>repoBuild</id>
289             <build>
290                 <plugins>
291                     <plugin>
292                         <groupId>org.apache.maven.plugins</groupId>
293                         <artifactId>maven-javadoc-plugin</artifactId>
294                         <version>2.8.1</version>
295                         <executions>
296                             <execution>
297                                 <goals>
298                                     <goal>aggregate</goal>
299                                 </goals>
300                                 <phase>site</phase>
301                             </execution>
302                             <execution>
303                                 <id>attach-javadocs</id>
304                                 <goals>
305                                     <goal>jar</goal>
306                                 </goals>
307                             </execution>
308                         </executions>
309                     </plugin>
310                     <plugin>
311                         <groupId>org.apache.maven.plugins</groupId>
312                         <artifactId>maven-source-plugin</artifactId>
313                         <executions>
314                             <execution>
315                                 <id>attach-sources</id>
316                                 <phase>package</phase>
317                                 <goals>
318                                     <goal>jar-no-fork</goal>
319                                 </goals>
320                             </execution>
321                         </executions>
322                     </plugin>
323                 </plugins>
324             </build>
325         </profile>
326     </profiles>
327 </project>