|
15 | 15 | <artifactId>money-api</artifactId> |
16 | 16 | <packaging>jar</packaging> |
17 | 17 |
|
18 | | - <version>1.0-SNAPSHOT</version> |
| 18 | + <version>0.9</version> |
19 | 19 |
|
20 | 20 | <name>JSR 354 (Money and Currency API)</name> |
21 | 21 | <url>http://java.net/projects/javamoney</url> |
|
309 | 309 | <executions> |
310 | 310 | <execution> |
311 | 311 | <id>attach-sources</id> |
312 | | - <!-- phase>verify</phase --> |
313 | 312 | <goals> |
314 | 313 | <goal>jar</goal> |
315 | 314 | </goals> |
|
411 | 410 | <version>${testng.version}</version> |
412 | 411 | <scope>test</scope> |
413 | 412 | </dependency> |
414 | | - <!-- dependency> |
415 | | - <groupId>junit</groupId> |
416 | | - <artifactId>junit</artifactId> |
417 | | - <version>${junit.version}</version> |
418 | | - <scope>test</scope> |
419 | | - </dependency --> |
420 | 413 | </dependencies> |
421 | 414 | </dependencyManagement> |
422 | 415 |
|
|
426 | 419 | <artifactId>testng</artifactId> |
427 | 420 | <scope>test</scope> |
428 | 421 | </dependency> |
429 | | - <!-- dependency> |
430 | | - <groupId>junit</groupId> |
431 | | - <artifactId>junit</artifactId> |
432 | | - <scope>test</scope> |
433 | | - </dependency --> |
434 | 422 | </dependencies> |
435 | 423 |
|
436 | 424 | <build> |
|
452 | 440 |
|
453 | 441 | <pluginManagement> |
454 | 442 | <plugins> |
| 443 | + <plugin> |
| 444 | + <groupId>org.apache.maven.plugins</groupId> |
| 445 | + <artifactId>maven-site-plugin</artifactId> |
| 446 | + <version>3.1</version> |
| 447 | + </plugin> |
455 | 448 | <!-- ======================================================= --> |
456 | 449 | <!-- Packaging (OSGi bundle) --> |
457 | 450 | <!-- ======================================================= --> |
|
562 | 555 | </execution> |
563 | 556 | </executions> |
564 | 557 | <configuration> |
565 | | - <detectLinks>true</detectLinks> |
566 | | - <!-- excludePackageNames>blabla</excludePackageNames --> |
| 558 | + <additionalparam>-Xdoclint:none</additionalparam> |
| 559 | + <detectLinks>false</detectLinks> |
567 | 560 | <keywords>true</keywords> |
| 561 | + <linksource>false</linksource> |
568 | 562 | <failOnError>false</failOnError> |
569 | | - <linksource>true</linksource> |
570 | | - <!-- overview>${basedir}/overview.html</overview --> |
571 | | - <source>${maven.compile.sourceLevel}</source> |
572 | | - <!-- stylesheetfile>${basedir}/src/site/css/money-jdoc.css</stylesheetfile --> |
573 | | - <verbose>true</verbose> |
| 563 | + <source>1.8</source> |
| 564 | + <verbose>false</verbose> |
574 | 565 | </configuration> |
575 | 566 | </plugin> |
576 | 567 | <plugin> |
|
603 | 594 | <plugin> |
604 | 595 | <groupId>org.apache.maven.plugins</groupId> |
605 | 596 | <artifactId>maven-javadoc-plugin</artifactId> |
606 | | - <executions> |
607 | | - <execution> |
608 | | - <id>attach-javadocs</id> |
609 | | - <goals> |
610 | | - <goal>jar</goal> |
611 | | - </goals> |
612 | | - </execution> |
613 | | - </executions> |
| 597 | + <version>2.9.1</version> |
614 | 598 | </plugin> |
615 | 599 | <plugin> |
616 | 600 | <groupId>org.apache.maven.plugins</groupId> |
|
679 | 663 | <plugin> |
680 | 664 | <groupId>org.apache.maven.plugins</groupId> |
681 | 665 | <artifactId>maven-jar-plugin</artifactId> |
682 | | - <executions> |
683 | | - <execution> |
684 | | - <goals> |
685 | | - <goal>test-jar</goal> |
686 | | - </goals> |
687 | | - </execution> |
688 | | - </executions> |
689 | 666 | </plugin> |
690 | 667 | <plugin> |
691 | 668 | <groupId>org.asciidoctor</groupId> |
|
817 | 794 | </docletArtifact> |
818 | 795 | <show>private</show> |
819 | 796 | <additionalparam> |
| 797 | + -Xdoclint:none |
820 | 798 | -inferrel -inferdep -quiet -hide java.* |
821 | 799 | -collpackages java.util.* |
822 | 800 | -postfixpackage -nodefontname Tahoma |
|
827 | 805 | </reportSet> |
828 | 806 | </reportSets> |
829 | 807 | </plugin> |
| 808 | + <plugin> |
| 809 | + <groupId>org.codehaus.mojo</groupId> |
| 810 | + <artifactId>jdepend-maven-plugin</artifactId> |
| 811 | + <version>2.0-beta-2</version> |
| 812 | + </plugin> |
830 | 813 | <plugin> |
831 | 814 | <groupId>org.apache.maven.plugins</groupId> |
832 | | - <artifactId>maven-jxr-plugin</artifactId> |
833 | | - <version>2.3</version> |
| 815 | + <artifactId>maven-surefire-report-plugin</artifactId> |
| 816 | + <version>2.15</version> |
834 | 817 | <configuration> |
835 | 818 | <aggregate>true</aggregate> |
836 | | - <linkJavadoc>true</linkJavadoc> |
| 819 | + <xrefLocation>${project.reporting.outputDirectory}/../xref-test</xrefLocation> |
| 820 | + <linkXRef>true</linkXRef> |
| 821 | + </configuration> |
| 822 | + </plugin> |
| 823 | + <plugin> |
| 824 | + <groupId>org.apache.maven.plugins</groupId> |
| 825 | + <artifactId>maven-pmd-plugin</artifactId> |
| 826 | + <version>3.0.1</version> |
| 827 | + <configuration> |
| 828 | + <targetJdk>${maven.compile.targetLevel}</targetJdk> |
| 829 | + <format>xml</format> |
| 830 | + <linkXRef>true</linkXRef> |
837 | 831 | <aggregate>true</aggregate> |
838 | | - <javadocDir>${project.name}/apidocs</javadocDir> |
839 | | - <windowTitle>JSR 354 - Java Money Sources</windowTitle> |
| 832 | + <sourceEncoding>${project.build.sourceEncoding}</sourceEncoding> |
840 | 833 | </configuration> |
841 | 834 | </plugin> |
842 | 835 | <plugin> |
|
849 | 842 | <tagListOptions> |
850 | 843 | <tagClasses> |
851 | 844 | <tagClass> |
852 | | - <displayName>Important fixes that have to be done until the next |
| 845 | + <displayName>Important fixes that have to be done until the |
| 846 | + next |
853 | 847 | release |
854 | 848 | </displayName> |
855 | 849 | <tags> |
|
891 | 885 | </plugin> |
892 | 886 | <plugin> |
893 | 887 | <groupId>org.apache.maven.plugins</groupId> |
894 | | - <artifactId>maven-pmd-plugin</artifactId> |
895 | | - <version>3.0.1</version> |
| 888 | + <artifactId>maven-jxr-plugin</artifactId> |
| 889 | + <version>2.3</version> |
896 | 890 | <configuration> |
897 | | - <targetJdk>${maven.compile.targetLevel}</targetJdk> |
898 | | - <format>xml</format> |
899 | | - <linkXRef>true</linkXRef> |
900 | 891 | <aggregate>true</aggregate> |
901 | | - <sourceEncoding>${project.build.sourceEncoding}</sourceEncoding> |
902 | | - </configuration> |
903 | | - </plugin> |
904 | | - <plugin> |
905 | | - <groupId>org.apache.maven.plugins</groupId> |
906 | | - <artifactId>maven-surefire-report-plugin</artifactId> |
907 | | - <version>2.15</version> |
908 | | - <configuration> |
| 892 | + <linkJavadoc>true</linkJavadoc> |
909 | 893 | <aggregate>true</aggregate> |
910 | | - <xrefLocation>${project.reporting.outputDirectory}/../xref-test</xrefLocation> |
911 | | - <linkXRef>true</linkXRef> |
| 894 | + <javadocDir>${project.name}/apidocs</javadocDir> |
| 895 | + <!-- stylesheet>${basedir}/src/site/css/javamoneys-jdoc.css</stylesheet --> |
| 896 | + <windowTitle>JSR 354 - Java Money API Sources</windowTitle> |
912 | 897 | </configuration> |
913 | 898 | </plugin> |
914 | | - |
915 | 899 | <plugin> |
916 | | - <groupId>org.codehaus.mojo</groupId> |
917 | | - <artifactId>jdepend-maven-plugin</artifactId> |
918 | | - <version>2.0-beta-2</version> |
| 900 | + <groupId>org.apache.maven.plugins</groupId> |
| 901 | + <artifactId>maven-dependency-plugin</artifactId> |
| 902 | + <version>2.8</version> |
919 | 903 | </plugin> |
920 | | - |
921 | 904 | <plugin> |
922 | 905 | <groupId>org.jacoco</groupId> |
923 | 906 | <artifactId>jacoco-maven-plugin</artifactId> |
|
927 | 910 | <dataFile>${basedir}/target/coverage-reports/jacoco-unit.exec</dataFile> |
928 | 911 | </configuration> |
929 | 912 | </plugin> |
930 | | - |
931 | 913 | <plugin> |
932 | 914 | <groupId>org.codehaus.mojo</groupId> |
933 | 915 | <artifactId>findbugs-maven-plugin</artifactId> |
|
948 | 930 | <groupId>org.apache.maven.plugins</groupId> |
949 | 931 | <artifactId>maven-project-info-reports-plugin</artifactId> |
950 | 932 | <version>2.7</version> |
951 | | - <reportSets> |
952 | | - <reportSet> |
953 | | - <inherited>true</inherited> |
954 | | - <reports> |
955 | | - <report>index</report> |
956 | | - <report>scm</report> |
957 | | - <report>plugin-management</report> |
958 | | - <report>plugins</report> |
959 | | - <report>summary</report> |
960 | | - <report>dependencies</report> |
961 | | - <report>dependency-convergence</report> |
962 | | - <report>dependency-management</report> |
963 | | - </reports> |
964 | | - </reportSet> |
965 | | - <reportSet> |
966 | | - <inherited>false</inherited> |
967 | | - <reports> |
968 | | - <report>project-team</report> |
969 | | - <report>issue-tracking</report> |
970 | | - <report>license</report> |
971 | | - <report>mailing-list</report> |
972 | | - <report>cim</report> |
973 | | - </reports> |
974 | | - </reportSet> |
975 | | - </reportSets> |
976 | 933 | </plugin> |
977 | | - |
978 | 934 | <plugin> |
979 | 935 | <groupId>org.codehaus.mojo</groupId> |
980 | | - <artifactId>dashboard-maven-plugin</artifactId> |
981 | | - <version>1.0.0-beta-1</version> |
| 936 | + <artifactId>findbugs-maven-plugin</artifactId> |
| 937 | + <version>2.5.2</version> |
| 938 | + <configuration> |
| 939 | + <xrefLocation>${project.reporting.outputDirectory}/../xref</xrefLocation> |
| 940 | + <xmlOutput>true</xmlOutput> |
| 941 | + <effort>Max</effort> |
| 942 | + <threshold>Low</threshold> |
| 943 | + <failOnError>false</failOnError> |
| 944 | + <findbugsXmlOutput>true</findbugsXmlOutput> |
| 945 | + <findbugsXmlOutputDirectory>target/site</findbugsXmlOutputDirectory> |
| 946 | + <xrefLocation>xref/</xrefLocation> |
| 947 | + </configuration> |
982 | 948 | </plugin> |
983 | | - |
984 | 949 | <plugin> |
985 | 950 | <groupId>org.apache.maven.plugins</groupId> |
986 | 951 | <artifactId>maven-site-plugin</artifactId> |
987 | | - <version>3.1</version> |
988 | 952 | </plugin> |
989 | 953 | </plugins> |
990 | 954 | </reporting> |
|
0 commit comments