|
45 | 45 | <artifactId>maven-site-plugin</artifactId> |
46 | 46 | <version>3.4</version> |
47 | 47 | <configuration> |
| 48 | + <skipDeploy>true</skipDeploy> |
48 | 49 | <reportPlugins> |
| 50 | + <plugin> |
| 51 | + <groupId>org.apache.maven.plugins</groupId> |
| 52 | + <artifactId>maven-changelog-plugin</artifactId> |
| 53 | + <version>2.3</version> |
| 54 | + </plugin> |
49 | 55 | <plugin> |
50 | 56 | <groupId>org.apache.maven.plugins</groupId> |
51 | 57 | <artifactId>maven-project-info-reports-plugin</artifactId> |
52 | 58 | <version>2.8</version> |
| 59 | + <reportSets> |
| 60 | + <reportSet> |
| 61 | + <reports> |
| 62 | + <report>index</report> |
| 63 | + <report>dependency-info</report> |
| 64 | + <report>dependencies</report> |
| 65 | + <report>dependency-convergence</report> |
| 66 | + <report>project-team</report> |
| 67 | + <report>mailing-list</report> |
| 68 | + <report>cim</report> |
| 69 | + <report>issue-tracking</report> |
| 70 | + <report>license</report> |
| 71 | + <report>scm</report> |
| 72 | + <report>dependency-management</report> |
| 73 | + <report>distribution-management</report> |
| 74 | + <report>summary</report> |
| 75 | + <report>modules</report> |
| 76 | + </reports> |
| 77 | + </reportSet> |
| 78 | + </reportSets> |
53 | 79 | <configuration> |
| 80 | + <aggregate>true</aggregate> |
| 81 | + <quiet>true</quiet> |
| 82 | + <dependencyDetailsEnabled>true</dependencyDetailsEnabled> |
| 83 | + <dependencyLocationsEnabled>true</dependencyLocationsEnabled> |
54 | 84 | <artifactId>gcloud-java-datastore</artifactId> |
| 85 | + <packaging>jar</packaging> |
| 86 | + </configuration> |
| 87 | + </plugin> |
| 88 | + <plugin> |
| 89 | + <groupId>org.apache.maven.plugins</groupId> |
| 90 | + <artifactId>maven-dependency-plugin</artifactId> |
| 91 | + <version>2.10</version> |
| 92 | + </plugin> |
| 93 | + <plugin> |
| 94 | + <groupId>org.apache.maven.plugins</groupId> |
| 95 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 96 | + <version>2.10.3</version> |
| 97 | + <reportSets> |
| 98 | + <reportSet> |
| 99 | + <id>html</id> |
| 100 | + <reports> |
| 101 | + <report>javadoc</report> |
| 102 | + </reports> |
| 103 | + </reportSet> |
| 104 | + </reportSets> |
| 105 | + <configuration> |
| 106 | + <aggregate>true</aggregate> |
| 107 | + <show>protected</show> |
| 108 | + <nohelp>true</nohelp> |
| 109 | + <outputDirectory>${project.build.directory}/javadoc</outputDirectory> |
| 110 | + </configuration> |
| 111 | + </plugin> |
| 112 | + <plugin> |
| 113 | + <groupId>org.apache.maven.plugins</groupId> |
| 114 | + <artifactId>maven-surefire-report-plugin</artifactId> |
| 115 | + <version>2.18.1</version> |
| 116 | + </plugin> |
| 117 | + <plugin> |
| 118 | + <groupId>org.apache.maven.plugins</groupId> |
| 119 | + <artifactId>maven-checkstyle-plugin</artifactId> |
| 120 | + <version>2.16</version> |
| 121 | + <configuration> |
| 122 | + <configLocation>checkstyle.xml</configLocation> |
| 123 | + <failOnViolation>false</failOnViolation> |
| 124 | + </configuration> |
| 125 | + </plugin> |
| 126 | + <plugin> |
| 127 | + <groupId>org.codehaus.mojo</groupId> |
| 128 | + <artifactId>cobertura-maven-plugin</artifactId> |
| 129 | + <version>2.7</version> |
| 130 | + <configuration> |
| 131 | + <aggregate>true</aggregate> |
55 | 132 | </configuration> |
56 | 133 | </plugin> |
57 | 134 | </reportPlugins> |
|
0 commit comments