|
179 | 179 | <junit.version>4.11</junit.version>
|
180 | 180 | <jopt-simple.version>3.2</jopt-simple.version>
|
181 | 181 | <commons-compress.version>1.5</commons-compress.version>
|
182 |
| - <hadoop20.output.dir>target/hadoop20-classes</hadoop20.output.dir> |
183 | 182 | <force.mac.tests>false</force.mac.tests>
|
184 | 183 | </properties>
|
185 | 184 |
|
|
225 | 224 | <configuration>
|
226 | 225 | <excludePackageNames>*.internal.*:echo:*.example.*</excludePackageNames>
|
227 | 226 | <links>
|
228 |
| - <link>http://docs.oracle.com/javase/7/docs/api/</link> |
| 227 | + <link>http://docs.oracle.com/javase/8/docs/api/</link> |
229 | 228 | </links>
|
230 | 229 | <bottom>
|
231 |
| - <![CDATA[Copyright © 2013-2016 <a href="http://www.apache.org">The Apache Software Foundation</a>. All rights reserved.]]> |
| 230 | + <![CDATA[Copyright © 2013-2020 <a href="http://www.apache.org">The Apache Software Foundation</a>. All rights reserved.]]> |
232 | 231 | </bottom>
|
| 232 | + <doclint>none</doclint> |
| 233 | + <failOnError>false</failOnError> |
233 | 234 | </configuration>
|
234 | 235 | <executions>
|
235 | 236 | <execution>
|
|
375 | 376 | <plugin>
|
376 | 377 | <groupId>org.apache.maven.plugins</groupId>
|
377 | 378 | <artifactId>maven-assembly-plugin</artifactId>
|
378 |
| - <version>2.4</version> |
| 379 | + <version>3.2.0</version> |
379 | 380 | <configuration>
|
380 | 381 | <finalName>apache-twill-${project.version}</finalName>
|
381 | 382 | <formats>
|
382 | 383 | <format>tar.gz</format>
|
383 | 384 | </formats>
|
| 385 | + <tarLongFileMode>posix</tarLongFileMode> |
384 | 386 | </configuration>
|
385 | 387 | </plugin>
|
386 | 388 | <plugin>
|
|
394 | 396 | </plugins>
|
395 | 397 | </build>
|
396 | 398 | </profile>
|
397 |
| - <profile> |
398 |
| - <id>hadoop-2.0</id> |
399 |
| - <properties> |
400 |
| - <hadoop.version>2.0.2-alpha</hadoop.version> |
401 |
| - </properties> |
402 |
| - <build> |
403 |
| - <plugins> |
404 |
| - <plugin> |
405 |
| - <groupId>org.codehaus.mojo</groupId> |
406 |
| - <artifactId>build-helper-maven-plugin</artifactId> |
407 |
| - <version>1.8</version> |
408 |
| - <executions> |
409 |
| - <execution> |
410 |
| - <id>add-source</id> |
411 |
| - <phase>generate-sources</phase> |
412 |
| - <goals> |
413 |
| - <goal>add-source</goal> |
414 |
| - </goals> |
415 |
| - <configuration> |
416 |
| - <sources> |
417 |
| - <source>src/main/hadoop20</source> |
418 |
| - </sources> |
419 |
| - </configuration> |
420 |
| - </execution> |
421 |
| - </executions> |
422 |
| - </plugin> |
423 |
| - </plugins> |
424 |
| - </build> |
425 |
| - </profile> |
426 |
| - <profile> |
427 |
| - <id>cdh-4.4.0</id> |
428 |
| - <properties> |
429 |
| - <hadoop.version>2.0.0-cdh4.4.0</hadoop.version> |
430 |
| - </properties> |
431 |
| - <repositories> |
432 |
| - <repository> |
433 |
| - <id>cloudera-releases</id> |
434 |
| - <url>https://repository.cloudera.com/artifactory/cloudera-repos</url> |
435 |
| - <releases> |
436 |
| - <enabled>true</enabled> |
437 |
| - </releases> |
438 |
| - <snapshots> |
439 |
| - <enabled>false</enabled> |
440 |
| - </snapshots> |
441 |
| - </repository> |
442 |
| - </repositories> |
443 |
| - <build> |
444 |
| - <plugins> |
445 |
| - <plugin> |
446 |
| - <groupId>org.codehaus.mojo</groupId> |
447 |
| - <artifactId>build-helper-maven-plugin</artifactId> |
448 |
| - <version>1.8</version> |
449 |
| - <executions> |
450 |
| - <execution> |
451 |
| - <id>add-source</id> |
452 |
| - <phase>generate-sources</phase> |
453 |
| - <goals> |
454 |
| - <goal>add-source</goal> |
455 |
| - </goals> |
456 |
| - <configuration> |
457 |
| - <sources> |
458 |
| - <source>src/main/hadoop20</source> |
459 |
| - </sources> |
460 |
| - </configuration> |
461 |
| - </execution> |
462 |
| - </executions> |
463 |
| - </plugin> |
464 |
| - </plugins> |
465 |
| - </build> |
466 |
| - </profile> |
467 | 399 | <profile>
|
468 | 400 | <id>hadoop-2.1</id>
|
469 | 401 | <properties>
|
|
488 | 420 | </sources>
|
489 | 421 | </configuration>
|
490 | 422 | </execution>
|
491 |
| - <execution> |
492 |
| - <id>add-source-2.0</id> |
493 |
| - <phase>prepare-package</phase> |
494 |
| - <goals> |
495 |
| - <goal>add-source</goal> |
496 |
| - </goals> |
497 |
| - <configuration> |
498 |
| - <sources> |
499 |
| - <source>src/main/hadoop20</source> |
500 |
| - </sources> |
501 |
| - </configuration> |
502 |
| - </execution> |
503 | 423 | </executions>
|
504 | 424 | </plugin>
|
505 | 425 | </plugins>
|
|
530 | 450 | </sources>
|
531 | 451 | </configuration>
|
532 | 452 | </execution>
|
533 |
| - <execution> |
534 |
| - <id>add-source-2.0</id> |
535 |
| - <phase>prepare-package</phase> |
536 |
| - <goals> |
537 |
| - <goal>add-source</goal> |
538 |
| - </goals> |
539 |
| - <configuration> |
540 |
| - <sources> |
541 |
| - <source>src/main/hadoop20</source> |
542 |
| - </sources> |
543 |
| - </configuration> |
544 |
| - </execution> |
545 | 453 | </executions>
|
546 | 454 | </plugin>
|
547 | 455 | </plugins>
|
|
573 | 481 | </sources>
|
574 | 482 | </configuration>
|
575 | 483 | </execution>
|
576 |
| - <execution> |
577 |
| - <id>add-source-2.0</id> |
578 |
| - <phase>prepare-package</phase> |
579 |
| - <goals> |
580 |
| - <goal>add-source</goal> |
581 |
| - </goals> |
582 |
| - <configuration> |
583 |
| - <sources> |
584 |
| - <source>src/main/hadoop20</source> |
585 |
| - </sources> |
586 |
| - </configuration> |
587 |
| - </execution> |
588 | 484 | </executions>
|
589 | 485 | </plugin>
|
590 | 486 | </plugins>
|
|
616 | 512 | </sources>
|
617 | 513 | </configuration>
|
618 | 514 | </execution>
|
619 |
| - <execution> |
620 |
| - <id>add-source-2.0</id> |
621 |
| - <phase>prepare-package</phase> |
622 |
| - <goals> |
623 |
| - <goal>add-source</goal> |
624 |
| - </goals> |
625 |
| - <configuration> |
626 |
| - <sources> |
627 |
| - <source>src/main/hadoop20</source> |
628 |
| - </sources> |
629 |
| - </configuration> |
630 |
| - </execution> |
631 | 515 | </executions>
|
632 | 516 | </plugin>
|
633 | 517 | </plugins>
|
|
673 | 557 | </sources>
|
674 | 558 | </configuration>
|
675 | 559 | </execution>
|
676 |
| - <execution> |
677 |
| - <id>add-source-2.0</id> |
678 |
| - <phase>prepare-package</phase> |
679 |
| - <goals> |
680 |
| - <goal>add-source</goal> |
681 |
| - </goals> |
682 |
| - <configuration> |
683 |
| - <sources> |
684 |
| - <source>src/main/hadoop20</source> |
685 |
| - </sources> |
686 |
| - </configuration> |
687 |
| - </execution> |
688 | 560 | </executions>
|
689 | 561 | </plugin>
|
690 | 562 | </plugins>
|
|
716 | 588 | </sources>
|
717 | 589 | </configuration>
|
718 | 590 | </execution>
|
719 |
| - <execution> |
720 |
| - <id>add-source-2.0</id> |
721 |
| - <phase>prepare-package</phase> |
722 |
| - <goals> |
723 |
| - <goal>add-source</goal> |
724 |
| - </goals> |
725 |
| - <configuration> |
726 |
| - <sources> |
727 |
| - <source>src/main/hadoop20</source> |
728 |
| - </sources> |
729 |
| - </configuration> |
730 |
| - </execution> |
731 | 591 | </executions>
|
732 | 592 | </plugin>
|
733 | 593 | </plugins>
|
|
763 | 623 | </sources>
|
764 | 624 | </configuration>
|
765 | 625 | </execution>
|
766 |
| - <execution> |
767 |
| - <id>add-source-2.0</id> |
768 |
| - <phase>prepare-package</phase> |
769 |
| - <goals> |
770 |
| - <goal>add-source</goal> |
771 |
| - </goals> |
772 |
| - <configuration> |
773 |
| - <sources> |
774 |
| - <source>src/main/hadoop20</source> |
775 |
| - </sources> |
776 |
| - </configuration> |
777 |
| - </execution> |
778 | 626 | </executions>
|
779 | 627 | </plugin>
|
780 | 628 | </plugins>
|
|
0 commit comments