Skip to content

Commit 2d84ef2

Browse files
committed
update pom descriptions
1 parent 6d361df commit 2d84ef2

File tree

7 files changed

+19
-34
lines changed

7 files changed

+19
-34
lines changed

gcloud-java-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<name>GCloud Java core</name>
88
<url>https://github.com/GoogleCloudPlatform/gcloud-java</url>
99
<description>
10-
Java idiomatic client for Google Cloud Platform services.
10+
Core module for the gcloud-java.
1111
</description>
1212
<parent>
1313
<groupId>com.google.gcloud</groupId>

gcloud-java-datastore/pom.xml

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
<packaging>jar</packaging>
77
<name>GCloud Java datastore</name>
88
<url>https://github.com/GoogleCloudPlatform/gcloud-java</url>
9+
<description>
10+
Java idiomatic client for Google Cloud Datastore.
11+
</description>
912
<parent>
1013
<groupId>com.google.gcloud</groupId>
1114
<artifactId>gcloud-java-pom</artifactId>

gcloud-java-examples/pom.xml

-13
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,4 @@
2121
<version>${project.version}</version>
2222
</dependency>
2323
</dependencies>
24-
<build>
25-
<plugins>
26-
<plugin>
27-
<groupId>org.apache.maven.plugins</groupId>
28-
<artifactId>maven-site-plugin</artifactId>
29-
<version>3.1</version>
30-
<configuration>
31-
<skip>true</skip>
32-
<skipDeploy>true</skipDeploy>
33-
</configuration>
34-
</plugin>
35-
</plugins>
36-
</build>
3724
</project>

gcloud-java-storage/pom.xml

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
<packaging>jar</packaging>
77
<name>GCloud Java storage</name>
88
<url>https://github.com/GoogleCloudPlatform/gcloud-java</url>
9+
<description>
10+
Java idiomatic client for Google Cloud Storage.
11+
</description>
912
<parent>
1013
<groupId>com.google.gcloud</groupId>
1114
<artifactId>gcloud-java-pom</artifactId>

gcloud-java/pom.xml

+1-14
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.google.gcloud</groupId>
55
<artifactId>gcloud-java</artifactId>
66
<packaging>jar</packaging>
7-
<name>GCloud Java assembly</name>
7+
<name>GCloud Java</name>
88
<url>https://github.com/GoogleCloudPlatform/gcloud-java</url>
99
<description>
1010
Java idiomatic client for Google Cloud Platform services.
@@ -31,17 +31,4 @@
3131
<version>${project.version}</version>
3232
</dependency>
3333
</dependencies>
34-
<build>
35-
<plugins>
36-
<plugin>
37-
<groupId>org.apache.maven.plugins</groupId>
38-
<artifactId>maven-site-plugin</artifactId>
39-
<version>3.1</version>
40-
<configuration>
41-
<skip>true</skip>
42-
<skipDeploy>true</skipDeploy>
43-
</configuration>
44-
</plugin>
45-
</plugins>
46-
</build>
4734
</project>

pom.xml

+10-5
Original file line numberDiff line numberDiff line change
@@ -203,12 +203,18 @@
203203
<groupId>org.eluder.coveralls</groupId>
204204
<artifactId>coveralls-maven-plugin</artifactId>
205205
<version>3.0.1</version>
206+
<configuration>
207+
<coberturaReports>
208+
<coberturaReport>${basedir}/target/coverage.xml</coberturaReport>
209+
</coberturaReports>
210+
</configuration>
206211
</plugin>
207212
<plugin>
208213
<groupId>org.codehaus.mojo</groupId>
209214
<artifactId>cobertura-maven-plugin</artifactId>
210215
<version>2.6</version>
211216
<configuration>
217+
<outputDirectory>${basedir}/target</outputDirectory>
212218
<formats>
213219
<format>xml</format>
214220
<format>html</format>
@@ -223,7 +229,6 @@
223229
<exclude>com/google/gcloud/examples/**/*.class</exclude>
224230
</excludes>
225231
</instrumentation>
226-
<check/>
227232
<maxmem>256m</maxmem>
228233
</configuration>
229234
</plugin>
@@ -259,15 +264,19 @@
259264
<reportSet>
260265
<reports>
261266
<report>index</report>
267+
<report>dependency-info</report>
262268
<report>dependencies</report>
269+
<report>dependency-convergence</report>
263270
<report>project-team</report>
264271
<report>mailing-list</report>
265272
<report>cim</report>
266273
<report>issue-tracking</report>
267274
<report>license</report>
268275
<report>scm</report>
276+
<report>dependency-management</report>
269277
<report>distribution-management</report>
270278
<report>summary</report>
279+
<report>modules</report>
271280
</reports>
272281
</reportSet>
273282
</reportSets>
@@ -282,10 +291,6 @@
282291
<groupId>org.apache.maven.plugins</groupId>
283292
<artifactId>maven-dependency-plugin</artifactId>
284293
<version>2.10</version>
285-
<configuration>
286-
<aggregate>true</aggregate>
287-
<outputDirectory>${project.build.directory}/dependencies</outputDirectory>
288-
</configuration>
289294
</plugin>
290295
<plugin>
291296
<groupId>org.apache.maven.plugins</groupId>

src/site/site.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<version/>
2626
<body>
2727
<menu ref="parent" inherit="top" />
28-
<menu ref="modules" inherit="top" />
28+
<!-- <menu ref="modules" inherit="top" /> -->
2929
<menu ref="reports" inherit="top" />
3030
</body>
3131
</project>

0 commit comments

Comments
 (0)