blob: fc1b67236e286aafea272a8205fba6bb6971ae82 [file] [log] [blame]
Brian O'Connor354cab92015-08-27 11:55:27 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2014 Open Networking Laboratory
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
17<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <prerequisites>
23 <maven>3.0.1</maven>
24 </prerequisites>
25
26 <parent>
27 <groupId>org.onosproject</groupId>
28 <artifactId>onos-base</artifactId>
29 <version>1</version>
30 <relativePath>tools/build/pom.xml</relativePath>
31 </parent>
32
33 <artifactId>onos</artifactId>
34 <packaging>pom</packaging>
35 <version>1.3.0-SNAPSHOT</version>
36
37 <name>${project.artifactId}</name>
38 <description>Open Network Operating System root project</description>
39
40 <modules>
41 <module>utils</module>
42 <module>core</module>
43 <module>web</module>
44 <module>cli</module>
45
46 <module>openflow</module>
47 <module>ovsdb</module>
48 <module>pcep</module>
49
50 <module>providers</module>
51 <module>drivers</module>
52
53 <module>apps</module>
54 <module>incubator</module>
55 <module>features</module>
56
57 <module>tools/package/archetypes</module>
58 <module>tools/package/branding</module>
59 </modules>
60
61 <url>http://onosproject.org/</url>
62
63 <scm>
64 <connection>scm:git:https://gerrit.onosproject.org/onos</connection>
65 <developerConnection>scm:git:https://gerrit.onosproject.org/onos
66 </developerConnection>
67 <url>http://gerrit.onosproject.org/</url>
68 </scm>
69
70 <licenses>
71 <license>
72 <name>Apache License, Version 2.0</name>
73 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
74 </license>
75 </licenses>
76
77 <properties>
78 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
79 <netty4.version>4.0.23.Final</netty4.version>
80 <copycat.version>0.5.0.onos12-SNAPSHOT</copycat.version>
81 <openflowj.version>0.4.1.onos-SNAPSHOT</openflowj.version>
82 <karaf.version>3.0.3</karaf.version>
83 <jersey.version>1.19</jersey.version>
84 </properties>
85
86 <distributionManagement>
87 <snapshotRepository>
88 <id>ossrh</id>
89 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
90 </snapshotRepository>
91 </distributionManagement>
92
93 <!--- Needed for copycat. Remove before official release -->
94 <repositories>
95 <repository>
96 <id>snapshots</id>
97 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
98 </repository>
99 </repositories>
100
101 <!--- FIXME Needed for onos-maven-plugin. Remove before official release -->
102 <pluginRepositories>
103 <pluginRepository>
104 <id>snapshots</id>
105 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
106 </pluginRepository>
107 </pluginRepositories>
108
109 <dependencyManagement>
110 <dependencies>
111 <dependency>
112 <groupId>junit</groupId>
113 <artifactId>junit</artifactId>
114 <version>4.11</version>
115 <scope>test</scope>
116 </dependency>
117
118 <dependency>
119 <groupId>org.hamcrest</groupId>
120 <artifactId>hamcrest-core</artifactId>
121 <version>1.3</version>
122 <scope>test</scope>
123 </dependency>
124 <dependency>
125 <groupId>org.hamcrest</groupId>
126 <artifactId>hamcrest-library</artifactId>
127 <version>1.3</version>
128 <scope>test</scope>
129 </dependency>
130
131 <dependency>
132 <groupId>org.slf4j</groupId>
133 <artifactId>slf4j-api</artifactId>
134 <version>1.7.6</version>
135 <scope>provided</scope>
136 </dependency>
137
138 <dependency>
139 <groupId>org.slf4j</groupId>
140 <artifactId>slf4j-core</artifactId>
141 <version>1.7.6</version>
142 <scope>test</scope>
143 </dependency>
144
145 <dependency>
146 <groupId>org.slf4j</groupId>
147 <artifactId>slf4j-jdk14</artifactId>
148 <version>1.7.6</version>
149 <scope>test</scope>
150 </dependency>
151
152 <dependency>
153 <groupId>com.google.guava</groupId>
154 <artifactId>guava</artifactId>
155 <version>18.0</version>
156 </dependency>
157
158 <dependency>
159 <groupId>io.netty</groupId>
160 <artifactId>netty</artifactId>
161 <version>3.9.0.Final</version>
162 </dependency>
163
164 <dependency>
165 <groupId>com.google.guava</groupId>
166 <artifactId>guava-testlib</artifactId>
167 <version>18.0</version>
168 <scope>test</scope>
169 </dependency>
170
171 <dependency>
172 <groupId>com.googlecode.concurrent-trees</groupId>
173 <artifactId>concurrent-trees</artifactId>
174 <version>2.4.0</version>
175 </dependency>
176
177 <dependency>
178 <groupId>commons-lang</groupId>
179 <artifactId>commons-lang</artifactId>
180 <version>2.6</version>
181 </dependency>
182
183 <dependency>
184 <groupId>org.apache.commons</groupId>
185 <artifactId>commons-lang3</artifactId>
186 <version>3.3.2</version>
187 </dependency>
188
189 <dependency>
190 <groupId>commons-configuration</groupId>
191 <artifactId>commons-configuration</artifactId>
192 <version>1.10</version>
193 </dependency>
194
195 <dependency>
196 <groupId>commons-collections</groupId>
197 <artifactId>commons-collections</artifactId>
198 <version>3.2.1</version>
199 </dependency>
200
201 <dependency>
202 <groupId>org.codehaus.jackson</groupId>
203 <artifactId>jackson-core-asl</artifactId>
204 <version>1.9.13</version>
205 </dependency>
206 <dependency>
207 <groupId>org.codehaus.jackson</groupId>
208 <artifactId>jackson-mapper-asl</artifactId>
209 <version>1.9.13</version>
210 </dependency>
211
212 <dependency>
213 <groupId>org.easymock</groupId>
214 <artifactId>easymock</artifactId>
215 <version>3.2</version>
216 <scope>test</scope>
217 </dependency>
218
219 <!-- Web related -->
220 <dependency>
221 <groupId>com.sun.jersey</groupId>
222 <artifactId>jersey-servlet</artifactId>
223 <version>${jersey.version}</version>
224 <scope>provided</scope>
225 </dependency>
226 <dependency>
227 <groupId>com.sun.jersey.contribs</groupId>
228 <artifactId>jersey-multipart</artifactId>
229 <version>${jersey.version}</version>
230 <scope>provided</scope>
231 </dependency>
232 <dependency>
233 <groupId>com.sun.jersey.jersey-test-framework</groupId>
234 <artifactId>jersey-test-framework-core</artifactId>
235 <version>${jersey.version}</version>
236 <scope>test</scope>
237 </dependency>
238 <dependency>
239 <groupId>com.sun.jersey.jersey-test-framework</groupId>
240 <artifactId>jersey-test-framework-grizzly2</artifactId>
241 <version>${jersey.version}</version>
242 <scope>test</scope>
243 </dependency>
244 <dependency>
245 <groupId>com.fasterxml.jackson.core</groupId>
246 <artifactId>jackson-databind</artifactId>
247 <version>2.4.2</version>
248 <scope>provided</scope>
249 </dependency>
250 <dependency>
251 <groupId>com.fasterxml.jackson.core</groupId>
252 <artifactId>jackson-annotations</artifactId>
253 <version>2.4.2</version>
254 <scope>provided</scope>
255 </dependency>
256
257 <!-- OSGi related -->
258 <dependency>
259 <groupId>org.osgi</groupId>
260 <artifactId>org.osgi.core</artifactId>
261 <version>4.3.1</version>
262 <scope>provided</scope>
263 </dependency>
264 <dependency>
265 <groupId>org.osgi</groupId>
266 <artifactId>org.osgi.compendium</artifactId>
267 <version>4.3.1</version>
268 <scope>provided</scope>
269 </dependency>
270 <dependency>
271 <groupId>org.apache.felix</groupId>
272 <artifactId>org.apache.felix.scr.annotations</artifactId>
273 <version>1.9.8</version>
274 <scope>provided</scope>
275 </dependency>
276
277 <dependency>
278 <groupId>org.apache.karaf.features</groupId>
279 <artifactId>org.apache.karaf.features.core</artifactId>
280 <version>${karaf.version}</version>
281 <scope>provided</scope>
282 </dependency>
283 <dependency>
284 <groupId>org.apache.karaf.system</groupId>
285 <artifactId>org.apache.karaf.system.core</artifactId>
286 <version>${karaf.version}</version>
287 <scope>provided</scope>
288 </dependency>
289 <dependency>
290 <groupId>org.apache.karaf.shell</groupId>
291 <artifactId>org.apache.karaf.shell.console</artifactId>
292 <version>${karaf.version}</version>
293 <scope>provided</scope>
294 </dependency>
295
296 <dependency>
297 <groupId>org.livetribe.slp</groupId>
298 <artifactId>livetribe-slp</artifactId>
299 <version>2.2.1</version>
300 </dependency>
301
302 <dependency>
303 <groupId>com.eclipsesource.minimal-json</groupId>
304 <artifactId>minimal-json</artifactId>
305 <version>0.9.1</version>
306 </dependency>
307 <dependency>
308 <groupId>com.esotericsoftware</groupId>
309 <artifactId>kryo</artifactId>
310 <version>3.0.0</version>
311 </dependency>
312 <dependency>
313 <groupId>com.esotericsoftware</groupId>
314 <artifactId>reflectasm</artifactId>
315 <version>1.10.0</version>
316 <type>bundle</type>
317 </dependency>
318 <dependency>
319 <groupId>org.ow2.asm</groupId>
320 <artifactId>asm</artifactId>
321 <version>4.2</version>
322 </dependency>
323 <dependency>
324 <groupId>com.esotericsoftware</groupId>
325 <artifactId>minlog</artifactId>
326 <version>1.3.0</version>
327 </dependency>
328 <dependency>
329 <groupId>org.objenesis</groupId>
330 <artifactId>objenesis</artifactId>
331 <version>2.1</version>
332 </dependency>
333
334 <!-- ONOS related -->
335 <dependency>
336 <groupId>org.onosproject</groupId>
337 <artifactId>onlab-misc</artifactId>
338 <version>${project.version}</version>
339 </dependency>
340 <dependency>
341 <groupId>org.onosproject</groupId>
342 <artifactId>onlab-nio</artifactId>
343 <version>${project.version}</version>
344 </dependency>
345 <dependency>
346 <groupId>org.onosproject</groupId>
347 <artifactId>onlab-osgi</artifactId>
348 <version>${project.version}</version>
349 </dependency>
350 <dependency>
351 <groupId>org.onosproject</groupId>
352 <artifactId>onlab-osgi</artifactId>
353 <version>${project.version}</version>
354 <classifier>tests</classifier>
355 <scope>test</scope>
356 </dependency>
357 <dependency>
358 <groupId>org.onosproject</groupId>
359 <artifactId>onlab-junit</artifactId>
360 <version>${project.version}</version>
361 <scope>test</scope>
362 </dependency>
363
364 <dependency>
365 <groupId>org.onosproject</groupId>
366 <artifactId>onos-api</artifactId>
367 <version>${project.version}</version>
368 </dependency>
369 <dependency>
370 <groupId>org.onosproject</groupId>
371 <artifactId>onos-api</artifactId>
372 <version>${project.version}</version>
373 <classifier>tests</classifier>
374 <scope>test</scope>
375 </dependency>
376
377 <dependency>
378 <groupId>org.onosproject</groupId>
379 <artifactId>onos-incubator-api</artifactId>
380 <version>${project.version}</version>
381 </dependency>
382
383 <dependency>
384 <groupId>org.onosproject</groupId>
385 <artifactId>onos-core-common</artifactId>
386 <version>${project.version}</version>
387 </dependency>
388 <dependency>
389 <groupId>org.onosproject</groupId>
390 <artifactId>onos-core-common</artifactId>
391 <version>${project.version}</version>
392 <classifier>tests</classifier>
393 <scope>test</scope>
394 </dependency>
395
396 <dependency>
397 <groupId>org.onosproject</groupId>
398 <artifactId>onos-of-api</artifactId>
399 <version>${project.version}</version>
400 </dependency>
401 <dependency>
402 <groupId>org.onosproject</groupId>
403 <artifactId>onos-ovsdb-rfc</artifactId>
404 <version>${project.version}</version>
405 </dependency>
406 <dependency>
407 <groupId>org.onosproject</groupId>
408 <artifactId>onos-ovsdb-api</artifactId>
409 <version>${project.version}</version>
410 </dependency>
411 <dependency>
412 <groupId>org.onosproject</groupId>
413 <artifactId>onos-pcepio</artifactId>
414 <version>${project.version}</version>
415 </dependency>
416
417 <dependency>
418 <groupId>org.onosproject</groupId>
419 <artifactId>onos-pcep-controller-api</artifactId>
420 <version>${project.version}</version>
421 </dependency>
422
423 <dependency>
424 <groupId>org.onosproject</groupId>
425 <artifactId>onos-app-pcep-api</artifactId>
426 <version>${project.version}</version>
427 </dependency>
428 <dependency>
429 <groupId>org.onosproject</groupId>
430 <artifactId>onlab-thirdparty</artifactId>
431 <version>${project.version}</version>
432 </dependency>
433
434 <dependency>
435 <groupId>org.onosproject</groupId>
436 <artifactId>onos-of-api</artifactId>
437 <version>${project.version}</version>
438 <classifier>tests</classifier>
439 <scope>test</scope>
440 </dependency>
441 <dependency>
442 <groupId>commons-pool</groupId>
443 <artifactId>commons-pool</artifactId>
444 <version>1.6</version>
445 </dependency>
446 <dependency>
447 <groupId>io.netty</groupId>
448 <artifactId>netty-common</artifactId>
449 <version>${netty4.version}</version>
450 </dependency>
451 <dependency>
452 <groupId>io.netty</groupId>
453 <artifactId>netty-buffer</artifactId>
454 <version>${netty4.version}</version>
455 </dependency>
456 <dependency>
457 <groupId>io.netty</groupId>
458 <artifactId>netty-transport</artifactId>
459 <version>${netty4.version}</version>
460 </dependency>
461 <dependency>
462 <groupId>io.netty</groupId>
463 <artifactId>netty-handler</artifactId>
464 <version>${netty4.version}</version>
465 </dependency>
466 <dependency>
467 <groupId>io.netty</groupId>
468 <artifactId>netty-codec</artifactId>
469 <version>${netty4.version}</version>
470 </dependency>
471 <dependency>
472 <groupId>io.netty</groupId>
473 <artifactId>netty-transport-native-epoll</artifactId>
474 <version>${netty4.version}</version>
475 <classifier>${os.detected.classifier}</classifier>
476 </dependency>
477 <dependency>
478 <groupId>joda-time</groupId>
479 <artifactId>joda-time</artifactId>
480 <version>2.5</version>
481 </dependency>
482 </dependencies>
483 </dependencyManagement>
484
485 <dependencies>
486 <dependency>
487 <groupId>junit</groupId>
488 <artifactId>junit</artifactId>
489 </dependency>
490 <dependency>
491 <groupId>org.hamcrest</groupId>
492 <artifactId>hamcrest-core</artifactId>
493 </dependency>
494 <dependency>
495 <groupId>org.hamcrest</groupId>
496 <artifactId>hamcrest-library</artifactId>
497 </dependency>
498 <dependency>
499 <groupId>org.slf4j</groupId>
500 <artifactId>slf4j-api</artifactId>
501 </dependency>
502 <dependency>
503 <groupId>org.slf4j</groupId>
504 <artifactId>slf4j-jdk14</artifactId>
505 </dependency>
506 </dependencies>
507
508 <build>
509 <pluginManagement>
510 <plugins>
511 <plugin>
512 <groupId>org.apache.maven.plugins</groupId>
513 <artifactId>maven-compiler-plugin</artifactId>
514 <!-- TODO: update once following issue is fixed. -->
515 <!-- https://jira.codehaus.org/browse/MCOMPILER-205 -->
516 <version>2.5.1</version>
517 <configuration>
518 <source>1.8</source>
519 <target>1.8</target>
520 </configuration>
521 </plugin>
522
523 <plugin>
524 <groupId>org.apache.maven.plugins</groupId>
525 <artifactId>maven-surefire-plugin</artifactId>
526 <version>2.18.1</version>
527 <configuration>
528 <redirectTestOutputToFile>true
529 </redirectTestOutputToFile>
530 <printSummary>true</printSummary>
531 <excludedGroups>org.onlab.junit.IntegrationTest
532 </excludedGroups>
533 <rerunFailingTestsCount>1</rerunFailingTestsCount>
534 </configuration>
535 </plugin>
536
537 <plugin>
538 <groupId>org.apache.maven.plugins</groupId>
539 <artifactId>maven-jar-plugin</artifactId>
540 <version>2.3.1</version>
541 <executions>
542 <execution>
543 <phase>package</phase>
544 <goals>
545 <goal>test-jar</goal>
546 </goals>
547 </execution>
548 </executions>
549 </plugin>
550
551 <plugin>
552 <groupId>org.apache.maven.plugins</groupId>
553 <artifactId>maven-resources-plugin</artifactId>
554 <version>2.6</version>
555 </plugin>
556
557 <plugin>
558 <groupId>org.apache.felix</groupId>
559 <artifactId>maven-bundle-plugin</artifactId>
560 <version>2.5.3</version>
561 <extensions>true</extensions>
562 <!--
563 Drop following dependency when the below bug fix is published
564 https://issues.apache.org/jira/browse/FELIX-4556
565 -->
566 <dependencies>
567 <dependency>
568 <groupId>biz.aQute.bnd</groupId>
569 <artifactId>bndlib</artifactId>
570 <version>2.4.0</version>
571 </dependency>
572 </dependencies>
573 </plugin>
574
575 <plugin>
576 <groupId>org.apache.maven.plugins</groupId>
577 <artifactId>maven-shade-plugin</artifactId>
578 <version>2.3</version>
579 </plugin>
580
581 <plugin>
582 <groupId>org.apache.felix</groupId>
583 <artifactId>maven-scr-plugin</artifactId>
584 <version>1.20.0</version>
585 <executions>
586 <execution>
587 <id>generate-scr-srcdescriptor</id>
588 <goals>
589 <goal>scr</goal>
590 </goals>
591 </execution>
592 </executions>
593 <configuration>
594 <supportedProjectTypes>
595 <supportedProjectType>bundle</supportedProjectType>
596 <supportedProjectType>war</supportedProjectType>
597 </supportedProjectTypes>
598 </configuration>
599 </plugin>
600 <plugin>
601 <groupId>org.codehaus.mojo</groupId>
602 <artifactId>findbugs-maven-plugin</artifactId>
603 <version>3.0.0</version>
604 <dependencies>
605 <dependency>
606 <groupId>org.onosproject</groupId>
607 <artifactId>onos-build-conf</artifactId>
608 <version>1.0</version>
609 </dependency>
610 </dependencies>
611 <configuration>
612 <effort>Max</effort>
613 <excludeFilterFile>onos/findbugs-suppressions.xml
614 </excludeFilterFile>
615 </configuration>
616 </plugin>
617
618 <!-- This version needs to be updated manually when changes are made to onos-maven-plugin -->
619 <plugin>
620 <groupId>org.onosproject</groupId>
621 <artifactId>onos-maven-plugin</artifactId>
622 <version>1.5</version>
623 <executions>
624 <execution>
625 <id>cfg</id>
626 <phase>generate-resources</phase>
627 <goals>
628 <goal>cfg</goal>
629 </goals>
630 </execution>
631 <execution>
632 <id>swagger</id>
633 <phase>generate-sources</phase>
634 <goals>
635 <goal>swagger</goal>
636 </goals>
637 </execution>
638 <execution>
639 <id>app</id>
640 <phase>package</phase>
641 <goals>
642 <goal>app</goal>
643 </goals>
644 </execution>
645 </executions>
646 </plugin>
647 </plugins>
648 </pluginManagement>
649
650 <plugins>
651 <plugin>
652 <groupId>org.apache.maven.plugins</groupId>
653 <artifactId>maven-jar-plugin</artifactId>
654 </plugin>
655
656 <plugin>
657 <groupId>org.apache.maven.plugins</groupId>
658 <artifactId>maven-checkstyle-plugin</artifactId>
659 <version>2.13</version>
660 <dependencies>
661 <dependency>
662 <groupId>org.onosproject</groupId>
663 <artifactId>onos-build-conf</artifactId>
664 <version>1.0</version>
665 </dependency>
666 <!-- For Java 8 lambda support-->
667 <dependency>
668 <groupId>com.puppycrawl.tools</groupId>
669 <artifactId>checkstyle</artifactId>
670 <version>5.9</version>
671 </dependency>
672 </dependencies>
673 <configuration>
674 <!-- begin: workaround for unexpected NullPointerException on Eclipse -->
675 <sourceDirectory>${project.build.sourceDirectory}
676 </sourceDirectory>
677 <testSourceDirectory>${project.build.testSourceDirectory}
678 </testSourceDirectory>
679 <!-- end: workaround for unexpected NullPointerException on Eclipse -->
680 <configLocation>onos/checkstyle.xml</configLocation>
681 <suppressionsLocation>onos/suppressions.xml
682 </suppressionsLocation>
683 <failsOnError>false</failsOnError>
684 <logViolationsToConsole>true</logViolationsToConsole>
685 <includeTestSourceDirectory>true
686 </includeTestSourceDirectory>
687 </configuration>
688 <executions>
689 <execution>
690 <id>validate-checkstyle</id>
691 <phase>verify</phase>
692 <goals>
693 <goal>check</goal>
694 </goals>
695 </execution>
696 </executions>
697 </plugin>
698
699 <plugin>
700 <groupId>org.apache.maven.plugins</groupId>
701 <artifactId>maven-pmd-plugin</artifactId>
702 <version>3.2</version>
703 <configuration>
704 <excludes>
705 </excludes>
706 <rulesets>
707 <ruleset>onos/pmd.xml</ruleset>
708 </rulesets>
709 </configuration>
710 <executions>
711 <execution>
712 <id>validate-pmd</id>
713 <phase>verify</phase>
714 <goals>
715 <!-- Uncomment this goal to make the build fail on pmd errors -->
716 <!--<goal>check</goal>-->
717 </goals>
718 </execution>
719 </executions>
720 </plugin>
721
722 <plugin>
723 <groupId>org.jacoco</groupId>
724 <artifactId>jacoco-maven-plugin</artifactId>
725 <version>0.7.2.201409121644</version>
726 <executions>
727 <execution>
728 <id>default-prepare-agent</id>
729 <goals>
730 <goal>prepare-agent</goal>
731 </goals>
732 </execution>
733 <execution>
734 <id>default-report</id>
735 <phase>prepare-package</phase>
736 <goals>
737 <goal>report</goal>
738 </goals>
739 </execution>
740 </executions>
741 </plugin>
742 </plugins>
743 </build>
744
745 <reporting>
746 <plugins>
747 <plugin>
748 <groupId>org.apache.maven.plugins</groupId>
749 <artifactId>maven-checkstyle-plugin</artifactId>
750 <version>2.12.1</version>
751 <configuration>
752 <configLocation>onos/checkstyle.xml</configLocation>
753 </configuration>
754 </plugin>
755
756 <plugin>
757 <groupId>org.apache.maven.plugins</groupId>
758 <artifactId>maven-pmd-plugin</artifactId>
759 <version>3.2</version>
760 <configuration>
761 <excludes>
762 </excludes>
763 <rulesets>
764 <ruleset>onos/pmd.xml</ruleset>
765 </rulesets>
766 </configuration>
767 </plugin>
768 </plugins>
769 </reporting>
770</project>