Added augmentations for TCP_Flag reads and low level models
[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         <yang.ext.version>2013.09.07.4-SNAPSHOT</yang.ext.version>
41         <maven.bundle.version>2.4.0</maven.bundle.version>
42         <guava.version>14.0.1</guava.version> 
43         <netty.version>4.0.17.Final</netty.version>
44         <releaseplugin.version>2.3.2</releaseplugin.version>
45         <yangtools.version>0.6.2-SNAPSHOT</yangtools.version>
46         <yangtools.generator.version>0.6.2-SNAPSHOT</yangtools.generator.version>
47         <config.version>0.2.5-SNAPSHOT</config.version>
48     </properties>
49
50     <pluginRepositories>
51         <!-- Opendaylight public group -->
52         <pluginRepository>
53             <id>odlPublic</id>
54             <name>odlPublic</name>
55             <url>${nexusproxy}/groups/public/</url>
56             <snapshots>
57               <enabled>false</enabled>
58             </snapshots>
59         </pluginRepository>
60         <!-- OpenDayLight Snapshot artifact -->
61         <pluginRepository>
62             <id>opendaylight-snapshot</id>
63             <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
64             <releases>
65               <enabled>false</enabled>
66             </releases>
67         </pluginRepository>
68     </pluginRepositories>
69
70
71     <repositories>
72         <!-- Opendaylight public group -->
73         <repository>
74             <id>odlPublic</id>
75             <name>odlPublic</name>
76             <url>${nexusproxy}/groups/public/</url>
77             <snapshots>
78               <enabled>false</enabled>
79             </snapshots>
80         </repository>
81         <!-- OpenDayLight Snapshot artifact -->
82         <repository>
83             <id>opendaylight-snapshot</id>
84             <name>opendaylight-snapshot</name>
85             <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
86             <releases>
87               <enabled>false</enabled>
88             </releases>
89         </repository>
90     </repositories>
91     <distributionManagement>
92         <!-- OpenDayLight Released artifact -->
93         <repository>
94             <id>opendaylight-release</id>
95             <url>${nexusproxy}/repositories/opendaylight.release/</url>
96         </repository>
97         <!-- OpenDayLight Snapshot artifact -->
98         <snapshotRepository>
99             <id>opendaylight-snapshot</id>
100             <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
101         </snapshotRepository>
102         <!-- Site deployment -->
103         <!-- site>
104             <id>website</id>
105             <url>${sitedeploy}</url>
106         </site -->
107     </distributionManagement>
108
109
110     <dependencyManagement>
111         <dependencies>
112             <dependency>
113                 <groupId>org.slf4j</groupId>
114                 <artifactId>slf4j-api</artifactId>
115                 <version>${slf4j.version}</version>
116             </dependency>
117             <dependency>
118                 <groupId>io.netty</groupId>
119                 <artifactId>netty-buffer</artifactId>
120                 <version>${netty.version}</version>
121             </dependency>
122             <dependency>
123                 <groupId>io.netty</groupId>
124                 <artifactId>netty-handler</artifactId>
125                 <version>${netty.version}</version>
126             </dependency>
127             <dependency>
128                 <groupId>com.google.guava</groupId>
129                 <artifactId>guava</artifactId>
130                 <version>${guava.version}</version>
131             </dependency>
132             <dependency>
133                 <groupId>org.opendaylight.yangtools.model</groupId>
134                 <artifactId>ietf-inet-types</artifactId>
135                 <version>${ietf.model.version}</version>
136             </dependency>
137             <dependency>
138                 <groupId>org.opendaylight.yangtools.model</groupId>
139                 <artifactId>ietf-yang-types</artifactId>
140                 <version>${ietf.model.version}</version>
141             </dependency>
142             <dependency>
143                 <groupId>org.opendaylight.yangtools.model</groupId>
144                 <artifactId>yang-ext</artifactId>
145                 <version>${yang.ext.version}</version>
146             </dependency>
147             <dependency>
148                 <groupId>org.osgi</groupId>
149                 <artifactId>org.osgi.core</artifactId>
150                 <version>5.0.0</version>
151             </dependency>
152             <dependency>
153                 <groupId>junit</groupId>
154                 <artifactId>junit</artifactId>
155                 <version>4.10</version>
156                 <scope>test</scope>
157                 <optional>true</optional>
158             </dependency>
159             <dependency>
160                 <groupId>org.mockito</groupId>
161                 <artifactId>mockito-all</artifactId>
162                 <version>1.9.5</version>
163                 <scope>test</scope>
164             </dependency>
165         </dependencies>
166     </dependencyManagement>
167     <build>
168         <plugins>
169             <plugin>
170                 <groupId>org.apache.maven.plugins</groupId>
171                 <artifactId>maven-compiler-plugin</artifactId>
172                 <version>${compiler.version}</version>
173                 <inherited>true</inherited>
174                 <configuration>
175                     <source>1.7</source>
176                     <target>1.7</target>
177                 </configuration>
178             </plugin>
179             <plugin>
180                 <artifactId>maven-source-plugin</artifactId>
181                 <executions>
182                     <execution>
183                         <id>attach-sources</id>
184                         <phase>deploy</phase>
185                         <goals>
186                             <goal>jar-no-fork</goal>
187                         </goals> 
188                     </execution>
189                 </executions>
190             </plugin>
191             <plugin>
192               <groupId>org.apache.felix</groupId>
193               <artifactId>maven-bundle-plugin</artifactId>
194               <version>${maven.bundle.version}</version>
195               <extensions>true</extensions>
196               <configuration>
197                 <instructions>
198                   <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
199                 </instructions>
200                 <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
201               </configuration>
202             </plugin>
203         </plugins>
204         <pluginManagement>
205             <plugins>
206                 <plugin>
207                     <groupId>org.apache.maven.plugins</groupId>
208                     <artifactId>maven-source-plugin</artifactId>
209                     <version>2.2.1</version>
210                 </plugin>
211                 <plugin>
212                     <groupId>org.apache.maven.plugins</groupId>
213                     <artifactId>maven-deploy-plugin</artifactId>
214                     <version>2.7</version>
215                 </plugin>
216                 <plugin>
217                     <groupId>org.apache.maven.plugins</groupId>
218                     <artifactId>maven-jar-plugin</artifactId>
219                     <version>2.4</version>
220                 </plugin>
221                 <plugin>
222                     <groupId>org.apache.maven.plugins</groupId>
223                     <artifactId>maven-release-plugin</artifactId>
224                     <version>${releaseplugin.version}</version>
225                 </plugin>
226                 <plugin>
227                     <groupId>org.opendaylight.yangtools</groupId>
228                     <artifactId>yang-maven-plugin</artifactId>
229                     <version>${yangtools.version}</version>
230                 </plugin>
231                 <plugin>
232                     <groupId>org.apache.felix</groupId>
233                     <artifactId>maven-bundle-plugin</artifactId>
234                     <version>${maven.bundle.version}</version>
235                 </plugin>
236             </plugins>
237         </pluginManagement>
238     </build>
239     <reporting>
240         <plugins>
241             <plugin>
242                 <groupId>org.codehaus.mojo</groupId>
243                 <artifactId>findbugs-maven-plugin</artifactId>
244                 <version>2.5.2</version>
245                 <configuration>
246                     <effort>Max</effort>
247                     <threshold>Low</threshold>
248                     <goal>site</goal>
249                 </configuration>
250             </plugin>
251             <plugin>
252               <artifactId>maven-jxr-plugin</artifactId>
253               <version>2.3</version>
254               <configuration>
255                 <aggregate>true</aggregate>
256                 <linkJavadoc>true</linkJavadoc>
257               </configuration>
258             </plugin>
259
260             <plugin>
261                 <groupId>org.codehaus.mojo</groupId>
262                 <artifactId>jdepend-maven-plugin</artifactId>
263                 <version>2.0-beta-2</version>
264             </plugin>
265         </plugins>
266     </reporting>
267     <profiles>
268         <profile>
269             <id>viewbuild</id>
270             <activation>
271                 <activeByDefault>true</activeByDefault>
272             </activation>
273             <properties>
274                 <build.suffix>${project.version}</build.suffix>
275             </properties>
276         </profile>
277         <profile>
278             <id>jenkins</id>
279             <activation>
280                 <property>
281                     <name>BUILDSUFFIX</name>
282                 </property>
283             </activation>
284             <properties>
285                 <build.suffix>${BUILDSUFFIX}</build.suffix>
286             </properties>
287         </profile>
288         <profile>
289             <id>repoBuild</id>
290             <build>
291                 <plugins>
292                     <plugin>
293                         <groupId>org.apache.maven.plugins</groupId>
294                         <artifactId>maven-javadoc-plugin</artifactId>
295                         <version>2.8.1</version>
296                         <executions>
297                             <execution>
298                                 <goals>
299                                     <goal>aggregate</goal>
300                                 </goals>
301                                 <phase>site</phase>
302                             </execution>
303                             <execution>
304                                 <id>attach-javadocs</id>
305                                 <goals>
306                                     <goal>jar</goal>
307                                 </goals>
308                             </execution>
309                         </executions>
310                     </plugin>
311                     <plugin>
312                         <groupId>org.apache.maven.plugins</groupId>
313                         <artifactId>maven-source-plugin</artifactId>
314                         <executions>
315                             <execution>
316                                 <id>attach-sources</id>
317                                 <phase>package</phase>
318                                 <goals>
319                                     <goal>jar-no-fork</goal>
320                                 </goals>
321                             </execution>
322                         </executions>
323                     </plugin>
324                 </plugins>
325             </build>
326         </profile>
327     </profiles>
328 </project>