|
375 | 375 | <artifactId>maven-enforcer-plugin</artifactId> |
376 | 376 | <version>${maven-enforcer-plugin.version}</version> |
377 | 377 | <type>maven-plugin</type> |
| 378 | + <scope>compile</scope> |
378 | 379 | </dependency> |
379 | 380 | <dependency> |
380 | 381 | <groupId>org.apache.maven.plugins</groupId> |
381 | 382 | <artifactId>maven-invoker-plugin</artifactId> |
382 | 383 | <version>${maven-invoker-plugin.version}</version> |
383 | 384 | <type>maven-plugin</type> |
| 385 | + <scope>compile</scope> |
384 | 386 | </dependency> |
385 | 387 | <dependency> |
386 | 388 | <groupId>com.dkanejs.maven.plugins</groupId> |
387 | 389 | <artifactId>docker-compose-maven-plugin</artifactId> |
388 | 390 | <version>${docker-compose-maven-plugin.version}</version> |
389 | 391 | <type>maven-plugin</type> |
| 392 | + <scope>compile</scope> |
390 | 393 | </dependency> |
391 | 394 | <dependency> |
392 | 395 | <groupId>org.apache.maven.plugins</groupId> |
393 | 396 | <artifactId>maven-clean-plugin</artifactId> |
394 | 397 | <version>${maven-clean-plugin.version}</version> |
395 | 398 | <type>maven-plugin</type> |
| 399 | + <scope>compile</scope> |
396 | 400 | </dependency> |
397 | 401 | <dependency> |
398 | 402 | <groupId>org.apache.maven.plugins</groupId> |
399 | 403 | <artifactId>maven-dependency-plugin</artifactId> |
400 | 404 | <version>${maven-dependency-plugin.version}</version> |
401 | 405 | <type>maven-plugin</type> |
| 406 | + <scope>compile</scope> |
402 | 407 | </dependency> |
403 | 408 | <dependency> |
404 | 409 | <groupId>org.apache.maven.plugins</groupId> |
405 | 410 | <artifactId>maven-compiler-plugin</artifactId> |
406 | 411 | <version>${maven-compiler-plugin.version}</version> |
407 | 412 | <type>maven-plugin</type> |
| 413 | + <scope>compile</scope> |
408 | 414 | </dependency> |
409 | 415 | <dependency> |
410 | 416 | <groupId>org.springframework.boot</groupId> |
411 | 417 | <artifactId>spring-boot-maven-plugin</artifactId> |
412 | 418 | <version>${spring-boot-maven-plugin.version}</version> |
413 | 419 | <type>maven-plugin</type> |
| 420 | + <scope>compile</scope> |
414 | 421 | </dependency> |
415 | 422 |
|
416 | 423 | <dependency> |
417 | 424 | <groupId>org.apache.maven.plugins</groupId> |
418 | 425 | <artifactId>maven-site-plugin</artifactId> |
419 | 426 | <version>${maven-site-plugin.version}</version> |
420 | 427 | <type>maven-plugin</type> |
| 428 | + <scope>compile</scope> |
421 | 429 | </dependency> |
422 | 430 | <dependency> |
423 | 431 | <groupId>org.apache.maven.plugins</groupId> |
424 | 432 | <artifactId>maven-project-info-reports-plugin</artifactId> |
425 | 433 | <version>${maven-project-info-reports-plugin.version}</version> |
426 | 434 | <type>maven-plugin</type> |
| 435 | + <scope>compile</scope> |
427 | 436 | </dependency> |
428 | 437 | <dependency> |
429 | 438 | <groupId>org.apache.maven.plugins</groupId> |
430 | 439 | <artifactId>maven-jxr-plugin</artifactId> |
431 | 440 | <version>${maven-jxr-plugin.version}</version> |
432 | 441 | <type>maven-plugin</type> |
| 442 | + <scope>compile</scope> |
433 | 443 | </dependency> |
434 | 444 | <dependency> |
435 | 445 | <groupId>org.apache.maven.plugins</groupId> |
436 | 446 | <artifactId>maven-checkstyle-plugin</artifactId> |
437 | 447 | <version>${maven-checkstyle-plugin.version}</version> |
438 | 448 | <type>maven-plugin</type> |
| 449 | + <scope>compile</scope> |
439 | 450 | </dependency> |
440 | 451 | <dependency> |
441 | 452 | <groupId>com.github.spotbugs</groupId> |
442 | 453 | <artifactId>spotbugs-maven-plugin</artifactId> |
443 | 454 | <version>${spotbugs-maven-plugin.version}</version> |
444 | 455 | <type>maven-plugin</type> |
| 456 | + <scope>compile</scope> |
445 | 457 | </dependency> |
446 | 458 | <dependency> |
447 | 459 | <groupId>org.apache.maven.plugins</groupId> |
448 | 460 | <artifactId>maven-pmd-plugin</artifactId> |
449 | 461 | <version>${maven-pmd-plugin.version}</version> |
450 | 462 | <type>maven-plugin</type> |
| 463 | + <scope>compile</scope> |
451 | 464 | </dependency> |
452 | 465 | <dependency> |
453 | 466 | <groupId>org.apache.maven.plugins</groupId> |
454 | 467 | <artifactId>maven-surefire-plugin</artifactId> |
455 | 468 | <version>${maven-surefire-plugin.version}</version> |
456 | 469 | <type>maven-plugin</type> |
| 470 | + <scope>test</scope> |
457 | 471 | </dependency> |
458 | 472 | <dependency> |
459 | 473 | <groupId>org.apache.maven.plugins</groupId> |
460 | 474 | <artifactId>maven-surefire-report-plugin</artifactId> |
461 | 475 | <version>${maven-surefire-report-plugin.version}</version> |
462 | 476 | <type>maven-plugin</type> |
| 477 | + <scope>test</scope> |
463 | 478 | </dependency> |
464 | 479 | <dependency> |
465 | 480 | <groupId>org.apache.maven.plugins</groupId> |
466 | 481 | <artifactId>maven-release-plugin</artifactId> |
467 | 482 | <version>${maven-release-plugin.version}</version> |
468 | 483 | <type>maven-plugin</type> |
| 484 | + <scope>compile</scope> |
469 | 485 | </dependency> |
470 | 486 | <dependency> |
471 | 487 | <groupId>org.apache.maven.doxia</groupId> |
472 | 488 | <artifactId>doxia-module-markdown</artifactId> |
473 | 489 | <version>${doxia-module-markdown.version}</version> |
| 490 | + <scope>compile</scope> |
474 | 491 | </dependency> |
475 | 492 | <dependency> |
476 | 493 | <groupId>org.xmlunit</groupId> |
477 | 494 | <artifactId>xmlunit-core</artifactId> |
478 | 495 | <version>${xmlunit.version}</version> |
| 496 | + <scope>test</scope> |
479 | 497 | </dependency> |
480 | 498 | <dependency> |
481 | 499 | <groupId>net.sourceforge.htmlunit</groupId> |
482 | 500 | <artifactId>htmlunit</artifactId> |
483 | 501 | <version>${htmlunit.version}</version> |
| 502 | + <scope>test</scope> |
484 | 503 | </dependency> |
485 | 504 | </dependencies> |
486 | 505 | </dependencyManagement> |
|
645 | 664 | <scope>test</scope> |
646 | 665 | </dependency> |
647 | 666 |
|
| 667 | + <!-- |
648 | 668 | <dependency> |
649 | 669 | <groupId>org.apache.maven.plugins</groupId> |
650 | 670 | <artifactId>maven-enforcer-plugin</artifactId> |
651 | 671 | <type>maven-plugin</type> |
| 672 | + <scope>compile</scope> |
652 | 673 | </dependency> |
653 | 674 | <dependency> |
654 | 675 | <groupId>org.apache.maven.plugins</groupId> |
655 | 676 | <artifactId>maven-invoker-plugin</artifactId> |
656 | 677 | <type>maven-plugin</type> |
| 678 | + <scope>compile</scope> |
657 | 679 | </dependency> |
658 | 680 | <dependency> |
659 | 681 | <groupId>com.dkanejs.maven.plugins</groupId> |
660 | 682 | <artifactId>docker-compose-maven-plugin</artifactId> |
661 | 683 | <type>maven-plugin</type> |
| 684 | + <scope>compile</scope> |
662 | 685 | </dependency> |
663 | 686 | <dependency> |
664 | 687 | <groupId>org.apache.maven.plugins</groupId> |
665 | 688 | <artifactId>maven-clean-plugin</artifactId> |
666 | 689 | <type>maven-plugin</type> |
| 690 | + <scope>compile</scope> |
667 | 691 | </dependency> |
668 | 692 | <dependency> |
669 | 693 | <groupId>org.apache.maven.plugins</groupId> |
670 | 694 | <artifactId>maven-dependency-plugin</artifactId> |
671 | 695 | <type>maven-plugin</type> |
| 696 | + <scope>compile</scope> |
672 | 697 | </dependency> |
673 | 698 | <dependency> |
674 | 699 | <groupId>org.apache.maven.plugins</groupId> |
675 | 700 | <artifactId>maven-compiler-plugin</artifactId> |
676 | 701 | <type>maven-plugin</type> |
| 702 | + <scope>compile</scope> |
677 | 703 | </dependency> |
678 | 704 | <dependency> |
679 | 705 | <groupId>org.springframework.boot</groupId> |
680 | 706 | <artifactId>spring-boot-maven-plugin</artifactId> |
681 | 707 | <type>maven-plugin</type> |
| 708 | + <scope>compile</scope> |
682 | 709 | </dependency> |
683 | 710 |
|
684 | 711 | <dependency> |
685 | 712 | <groupId>org.apache.maven.plugins</groupId> |
686 | 713 | <artifactId>maven-site-plugin</artifactId> |
687 | 714 | <type>maven-plugin</type> |
| 715 | + <scope>compile</scope> |
688 | 716 | </dependency> |
689 | 717 | <dependency> |
690 | 718 | <groupId>org.apache.maven.plugins</groupId> |
691 | 719 | <artifactId>maven-project-info-reports-plugin</artifactId> |
692 | 720 | <type>maven-plugin</type> |
| 721 | + <scope>compile</scope> |
693 | 722 | </dependency> |
694 | 723 | <dependency> |
695 | 724 | <groupId>org.apache.maven.plugins</groupId> |
696 | 725 | <artifactId>maven-jxr-plugin</artifactId> |
697 | 726 | <type>maven-plugin</type> |
| 727 | + <scope>compile</scope> |
698 | 728 | </dependency> |
699 | 729 | <dependency> |
700 | 730 | <groupId>org.apache.maven.plugins</groupId> |
701 | 731 | <artifactId>maven-checkstyle-plugin</artifactId> |
702 | 732 | <type>maven-plugin</type> |
| 733 | + <scope>compile</scope> |
703 | 734 | </dependency> |
704 | 735 | <dependency> |
705 | 736 | <groupId>com.github.spotbugs</groupId> |
706 | 737 | <artifactId>spotbugs-maven-plugin</artifactId> |
707 | 738 | <type>maven-plugin</type> |
| 739 | + <scope>compile</scope> |
708 | 740 | </dependency> |
709 | 741 | <dependency> |
710 | 742 | <groupId>org.apache.maven.plugins</groupId> |
711 | 743 | <artifactId>maven-pmd-plugin</artifactId> |
712 | 744 | <type>maven-plugin</type> |
| 745 | + <scope>compile</scope> |
713 | 746 | </dependency> |
714 | 747 | <dependency> |
715 | 748 | <groupId>org.apache.maven.plugins</groupId> |
716 | 749 | <artifactId>maven-surefire-plugin</artifactId> |
717 | 750 | <type>maven-plugin</type> |
| 751 | + <scope>compile</scope> |
718 | 752 | </dependency> |
719 | 753 | <dependency> |
720 | 754 | <groupId>org.apache.maven.plugins</groupId> |
721 | 755 | <artifactId>maven-surefire-report-plugin</artifactId> |
722 | 756 | <type>maven-plugin</type> |
| 757 | + <scope>compile</scope> |
723 | 758 | </dependency> |
724 | 759 | <dependency> |
725 | 760 | <groupId>org.apache.maven.plugins</groupId> |
726 | 761 | <artifactId>maven-release-plugin</artifactId> |
727 | 762 | <type>maven-plugin</type> |
| 763 | + <scope>compile</scope> |
728 | 764 | </dependency> |
729 | 765 | <dependency> |
730 | 766 | <groupId>org.apache.maven.doxia</groupId> |
731 | 767 | <artifactId>doxia-module-markdown</artifactId> |
| 768 | + <scope>compile</scope> |
732 | 769 | </dependency> |
| 770 | + --> |
733 | 771 | </dependencies> |
734 | 772 |
|
735 | 773 | <build> |
|
776 | 814 | <groupId>net.sourceforge.pmd</groupId> |
777 | 815 | <artifactId>pmd-core</artifactId> |
778 | 816 | <version>${pmdVersion}</version> |
| 817 | + <scope>compile</scope> |
779 | 818 | </dependency> |
780 | 819 | <dependency> |
781 | 820 | <groupId>net.sourceforge.pmd</groupId> |
782 | 821 | <artifactId>pmd-java</artifactId> |
783 | 822 | <version>${pmdVersion}</version> |
| 823 | + <scope>compile</scope> |
784 | 824 | </dependency> |
785 | 825 | <dependency> |
786 | 826 | <groupId>net.sourceforge.pmd</groupId> |
787 | 827 | <artifactId>pmd-javascript</artifactId> |
788 | 828 | <version>${pmdVersion}</version> |
| 829 | + <scope>compile</scope> |
789 | 830 | </dependency> |
790 | 831 | <dependency> |
791 | 832 | <groupId>net.sourceforge.pmd</groupId> |
792 | 833 | <artifactId>pmd-jsp</artifactId> |
793 | 834 | <version>${pmdVersion}</version> |
| 835 | + <scope>compile</scope> |
794 | 836 | </dependency> |
795 | 837 | </dependencies> |
796 | 838 | </plugin> |
|
818 | 860 | <groupId>org.apache.maven.doxia</groupId> |
819 | 861 | <artifactId>doxia-module-markdown</artifactId> |
820 | 862 | <version>${doxia-module.version}</version> |
| 863 | + <scope>compile</scope> |
821 | 864 | </dependency> |
822 | 865 | <dependency> |
823 | 866 | <groupId>org.apache.maven.doxia</groupId> |
824 | 867 | <artifactId>doxia-module-itext</artifactId> |
825 | 868 | <version>${doxia-module.version}</version> |
| 869 | + <scope>compile</scope> |
826 | 870 | </dependency> |
827 | 871 | <dependency> |
828 | 872 | <groupId>org.apache.maven.doxia</groupId> |
829 | 873 | <artifactId>doxia-module-latex</artifactId> |
830 | 874 | <version>${doxia-module.version}</version> |
| 875 | + <scope>compile</scope> |
831 | 876 | </dependency> |
832 | 877 | <dependency> |
833 | 878 | <groupId>org.apache.maven.doxia</groupId> |
834 | 879 | <artifactId>doxia-module-rtf</artifactId> |
835 | 880 | <version>${doxia-module.version}</version> |
| 881 | + <scope>compile</scope> |
836 | 882 | </dependency> |
837 | 883 | <dependency> |
838 | 884 | <groupId>org.apache.maven.doxia</groupId> |
839 | 885 | <artifactId>doxia-module-xdoc</artifactId> |
840 | 886 | <version>${doxia-module.version}</version> |
| 887 | + <scope>compile</scope> |
841 | 888 | </dependency> |
842 | 889 | <dependency> |
843 | 890 | <groupId>org.apache.maven.doxia</groupId> |
844 | 891 | <artifactId>doxia-skin-model</artifactId> |
845 | 892 | <version>${doxia-module.version}</version> |
| 893 | + <scope>compile</scope> |
846 | 894 | </dependency> |
847 | 895 | <dependency> |
848 | 896 | <groupId>org.apache.maven.doxia</groupId> |
849 | 897 | <artifactId>doxia-site-renderer</artifactId> |
850 | 898 | <version>${doxia-module.version}</version> |
| 899 | + <scope>compile</scope> |
851 | 900 | </dependency> |
852 | 901 | <dependency> |
853 | 902 | <groupId>org.apache.maven.doxia</groupId> |
854 | 903 | <artifactId>doxia-test-docs</artifactId> |
855 | 904 | <version>${doxia-module.version}</version> |
| 905 | + <scope>compile</scope> |
856 | 906 | </dependency> |
857 | 907 | </dependencies> |
858 | 908 | </plugin> |
|
0 commit comments