|
13 | 13 | <artifactId>gcloud-java-pom</artifactId> |
14 | 14 | <version>0.0.11-SNAPSHOT</version> |
15 | 15 | </parent> |
16 | | - <properties> |
17 | | - <site.installationModule>gcloud-java-datastore</site.installationModule> |
18 | | - </properties> |
19 | 16 | <dependencies> |
20 | 17 | <dependency> |
21 | 18 | <groupId>${project.groupId}</groupId> |
|
41 | 38 | <scope>test</scope> |
42 | 39 | </dependency> |
43 | 40 | </dependencies> |
| 41 | + <build> |
| 42 | + <plugins> |
| 43 | + <plugin> |
| 44 | + <groupId>org.apache.maven.plugins</groupId> |
| 45 | + <artifactId>maven-site-plugin</artifactId> |
| 46 | + <version>3.4</version> |
| 47 | + <configuration> |
| 48 | + <skipDeploy>true</skipDeploy> |
| 49 | + <reportPlugins> |
| 50 | + <plugin> |
| 51 | + <groupId>org.apache.maven.plugins</groupId> |
| 52 | + <artifactId>maven-changelog-plugin</artifactId> |
| 53 | + <version>2.3</version> |
| 54 | + </plugin> |
| 55 | + <plugin> |
| 56 | + <groupId>org.apache.maven.plugins</groupId> |
| 57 | + <artifactId>maven-project-info-reports-plugin</artifactId> |
| 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> |
| 79 | + <configuration> |
| 80 | + <aggregate>true</aggregate> |
| 81 | + <quiet>true</quiet> |
| 82 | + <dependencyDetailsEnabled>true</dependencyDetailsEnabled> |
| 83 | + <dependencyLocationsEnabled>true</dependencyLocationsEnabled> |
| 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> |
| 132 | + </configuration> |
| 133 | + </plugin> |
| 134 | + </reportPlugins> |
| 135 | + </configuration> |
| 136 | + </plugin> |
| 137 | + </plugins> |
| 138 | + </build> |
44 | 139 | </project> |
0 commit comments