Skip to content

Commit 9c90c39

Browse files
committed
---
yaml --- r: 2331 b: refs/heads/update-datastore c: 207c00a h: refs/heads/master i: 2329: a63f350 2327: 1ca805b
1 parent 77b0f48 commit 9c90c39

6 files changed

Lines changed: 386 additions & 1 deletion

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/gh-pages: 4e0561bb4504bf647db669a14417b2b2c87ba45d
55
refs/heads/bigquery: 762fa5830e6c398c0396177e3e7fd243bd62cfc3
66
refs/heads/pubsub-alpha: 1a0e970f265af871e02274085b9662b3fe29058b
77
refs/heads/resource-manager: ebf4adc5ee835cd2086c4ac5b4e78d01a5a005a7
8-
refs/heads/update-datastore: 7afcc34c56b19556ef2b2cc8bcbc7459604910ad
8+
refs/heads/update-datastore: 207c00a3554efbc70041466ee9a4a6d982cb62d2
99
refs/tags/0.0.9: 22f1839238f66c39e67ed4dfdcd273b1ae2e8444
1010
refs/tags/v0.0.10: 207ebd2a3472fddee69fe1298eb90429e3306efd
1111
refs/tags/v0.0.11: ffbfba48a6426ff63c08ff2117e58681f251fbf2

branches/update-datastore/gcloud-java-core/pom.xml

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,90 @@
9797
<artifactId>maven-site-plugin</artifactId>
9898
<version>3.4</version>
9999
<configuration>
100+
<skipDeploy>true</skipDeploy>
100101
<reportPlugins>
102+
<plugin>
103+
<groupId>org.apache.maven.plugins</groupId>
104+
<artifactId>maven-changelog-plugin</artifactId>
105+
<version>2.3</version>
106+
</plugin>
101107
<plugin>
102108
<groupId>org.apache.maven.plugins</groupId>
103109
<artifactId>maven-project-info-reports-plugin</artifactId>
104110
<version>2.8</version>
111+
<reportSets>
112+
<reportSet>
113+
<reports>
114+
<report>index</report>
115+
<report>dependency-info</report>
116+
<report>dependencies</report>
117+
<report>dependency-convergence</report>
118+
<report>project-team</report>
119+
<report>mailing-list</report>
120+
<report>cim</report>
121+
<report>issue-tracking</report>
122+
<report>license</report>
123+
<report>scm</report>
124+
<report>dependency-management</report>
125+
<report>distribution-management</report>
126+
<report>summary</report>
127+
<report>modules</report>
128+
</reports>
129+
</reportSet>
130+
</reportSets>
105131
<configuration>
132+
<aggregate>true</aggregate>
133+
<quiet>true</quiet>
134+
<dependencyDetailsEnabled>true</dependencyDetailsEnabled>
135+
<dependencyLocationsEnabled>true</dependencyLocationsEnabled>
106136
<artifactId>gcloud-java-core</artifactId>
137+
<packaging>jar</packaging>
138+
</configuration>
139+
</plugin>
140+
<plugin>
141+
<groupId>org.apache.maven.plugins</groupId>
142+
<artifactId>maven-dependency-plugin</artifactId>
143+
<version>2.10</version>
144+
</plugin>
145+
<plugin>
146+
<groupId>org.apache.maven.plugins</groupId>
147+
<artifactId>maven-javadoc-plugin</artifactId>
148+
<version>2.10.3</version>
149+
<reportSets>
150+
<reportSet>
151+
<id>html</id>
152+
<reports>
153+
<report>javadoc</report>
154+
</reports>
155+
</reportSet>
156+
</reportSets>
157+
<configuration>
158+
<aggregate>true</aggregate>
159+
<show>protected</show>
160+
<nohelp>true</nohelp>
161+
<outputDirectory>${project.build.directory}/javadoc</outputDirectory>
162+
</configuration>
163+
</plugin>
164+
<plugin>
165+
<groupId>org.apache.maven.plugins</groupId>
166+
<artifactId>maven-surefire-report-plugin</artifactId>
167+
<version>2.18.1</version>
168+
</plugin>
169+
<plugin>
170+
<groupId>org.apache.maven.plugins</groupId>
171+
<artifactId>maven-checkstyle-plugin</artifactId>
172+
<version>2.16</version>
173+
<configuration>
174+
<configLocation>checkstyle.xml</configLocation>
175+
<failOnViolation>false</failOnViolation>
176+
</configuration>
177+
</plugin>
178+
<plugin>
179+
<groupId>org.codehaus.mojo</groupId>
180+
<artifactId>cobertura-maven-plugin</artifactId>
181+
<version>2.7</version>
182+
<configuration>
183+
<aggregate>true</aggregate>
107184
</configuration>
108185
</plugin>
109186
</reportPlugins>

branches/update-datastore/gcloud-java-datastore/pom.xml

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,90 @@
4545
<artifactId>maven-site-plugin</artifactId>
4646
<version>3.4</version>
4747
<configuration>
48+
<skipDeploy>true</skipDeploy>
4849
<reportPlugins>
50+
<plugin>
51+
<groupId>org.apache.maven.plugins</groupId>
52+
<artifactId>maven-changelog-plugin</artifactId>
53+
<version>2.3</version>
54+
</plugin>
4955
<plugin>
5056
<groupId>org.apache.maven.plugins</groupId>
5157
<artifactId>maven-project-info-reports-plugin</artifactId>
5258
<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>
5379
<configuration>
80+
<aggregate>true</aggregate>
81+
<quiet>true</quiet>
82+
<dependencyDetailsEnabled>true</dependencyDetailsEnabled>
83+
<dependencyLocationsEnabled>true</dependencyLocationsEnabled>
5484
<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>
55132
</configuration>
56133
</plugin>
57134
</reportPlugins>

branches/update-datastore/gcloud-java-examples/pom.xml

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,90 @@
3434
<artifactId>maven-site-plugin</artifactId>
3535
<version>3.4</version>
3636
<configuration>
37+
<skipDeploy>true</skipDeploy>
3738
<reportPlugins>
39+
<plugin>
40+
<groupId>org.apache.maven.plugins</groupId>
41+
<artifactId>maven-changelog-plugin</artifactId>
42+
<version>2.3</version>
43+
</plugin>
3844
<plugin>
3945
<groupId>org.apache.maven.plugins</groupId>
4046
<artifactId>maven-project-info-reports-plugin</artifactId>
4147
<version>2.8</version>
48+
<reportSets>
49+
<reportSet>
50+
<reports>
51+
<report>index</report>
52+
<report>dependency-info</report>
53+
<report>dependencies</report>
54+
<report>dependency-convergence</report>
55+
<report>project-team</report>
56+
<report>mailing-list</report>
57+
<report>cim</report>
58+
<report>issue-tracking</report>
59+
<report>license</report>
60+
<report>scm</report>
61+
<report>dependency-management</report>
62+
<report>distribution-management</report>
63+
<report>summary</report>
64+
<report>modules</report>
65+
</reports>
66+
</reportSet>
67+
</reportSets>
4268
<configuration>
69+
<aggregate>true</aggregate>
70+
<quiet>true</quiet>
71+
<dependencyDetailsEnabled>true</dependencyDetailsEnabled>
72+
<dependencyLocationsEnabled>true</dependencyLocationsEnabled>
4373
<artifactId>gcloud-java-examples</artifactId>
74+
<packaging>jar</packaging>
75+
</configuration>
76+
</plugin>
77+
<plugin>
78+
<groupId>org.apache.maven.plugins</groupId>
79+
<artifactId>maven-dependency-plugin</artifactId>
80+
<version>2.10</version>
81+
</plugin>
82+
<plugin>
83+
<groupId>org.apache.maven.plugins</groupId>
84+
<artifactId>maven-javadoc-plugin</artifactId>
85+
<version>2.10.3</version>
86+
<reportSets>
87+
<reportSet>
88+
<id>html</id>
89+
<reports>
90+
<report>javadoc</report>
91+
</reports>
92+
</reportSet>
93+
</reportSets>
94+
<configuration>
95+
<aggregate>true</aggregate>
96+
<show>protected</show>
97+
<nohelp>true</nohelp>
98+
<outputDirectory>${project.build.directory}/javadoc</outputDirectory>
99+
</configuration>
100+
</plugin>
101+
<plugin>
102+
<groupId>org.apache.maven.plugins</groupId>
103+
<artifactId>maven-surefire-report-plugin</artifactId>
104+
<version>2.18.1</version>
105+
</plugin>
106+
<plugin>
107+
<groupId>org.apache.maven.plugins</groupId>
108+
<artifactId>maven-checkstyle-plugin</artifactId>
109+
<version>2.16</version>
110+
<configuration>
111+
<configLocation>checkstyle.xml</configLocation>
112+
<failOnViolation>false</failOnViolation>
113+
</configuration>
114+
</plugin>
115+
<plugin>
116+
<groupId>org.codehaus.mojo</groupId>
117+
<artifactId>cobertura-maven-plugin</artifactId>
118+
<version>2.7</version>
119+
<configuration>
120+
<aggregate>true</aggregate>
44121
</configuration>
45122
</plugin>
46123
</reportPlugins>

branches/update-datastore/gcloud-java-storage/pom.xml

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,90 @@
5151
<artifactId>maven-site-plugin</artifactId>
5252
<version>3.4</version>
5353
<configuration>
54+
<skipDeploy>true</skipDeploy>
5455
<reportPlugins>
56+
<plugin>
57+
<groupId>org.apache.maven.plugins</groupId>
58+
<artifactId>maven-changelog-plugin</artifactId>
59+
<version>2.3</version>
60+
</plugin>
5561
<plugin>
5662
<groupId>org.apache.maven.plugins</groupId>
5763
<artifactId>maven-project-info-reports-plugin</artifactId>
5864
<version>2.8</version>
65+
<reportSets>
66+
<reportSet>
67+
<reports>
68+
<report>index</report>
69+
<report>dependency-info</report>
70+
<report>dependencies</report>
71+
<report>dependency-convergence</report>
72+
<report>project-team</report>
73+
<report>mailing-list</report>
74+
<report>cim</report>
75+
<report>issue-tracking</report>
76+
<report>license</report>
77+
<report>scm</report>
78+
<report>dependency-management</report>
79+
<report>distribution-management</report>
80+
<report>summary</report>
81+
<report>modules</report>
82+
</reports>
83+
</reportSet>
84+
</reportSets>
5985
<configuration>
86+
<aggregate>true</aggregate>
87+
<quiet>true</quiet>
88+
<dependencyDetailsEnabled>true</dependencyDetailsEnabled>
89+
<dependencyLocationsEnabled>true</dependencyLocationsEnabled>
6090
<artifactId>gcloud-java-storage</artifactId>
91+
<packaging>jar</packaging>
92+
</configuration>
93+
</plugin>
94+
<plugin>
95+
<groupId>org.apache.maven.plugins</groupId>
96+
<artifactId>maven-dependency-plugin</artifactId>
97+
<version>2.10</version>
98+
</plugin>
99+
<plugin>
100+
<groupId>org.apache.maven.plugins</groupId>
101+
<artifactId>maven-javadoc-plugin</artifactId>
102+
<version>2.10.3</version>
103+
<reportSets>
104+
<reportSet>
105+
<id>html</id>
106+
<reports>
107+
<report>javadoc</report>
108+
</reports>
109+
</reportSet>
110+
</reportSets>
111+
<configuration>
112+
<aggregate>true</aggregate>
113+
<show>protected</show>
114+
<nohelp>true</nohelp>
115+
<outputDirectory>${project.build.directory}/javadoc</outputDirectory>
116+
</configuration>
117+
</plugin>
118+
<plugin>
119+
<groupId>org.apache.maven.plugins</groupId>
120+
<artifactId>maven-surefire-report-plugin</artifactId>
121+
<version>2.18.1</version>
122+
</plugin>
123+
<plugin>
124+
<groupId>org.apache.maven.plugins</groupId>
125+
<artifactId>maven-checkstyle-plugin</artifactId>
126+
<version>2.16</version>
127+
<configuration>
128+
<configLocation>checkstyle.xml</configLocation>
129+
<failOnViolation>false</failOnViolation>
130+
</configuration>
131+
</plugin>
132+
<plugin>
133+
<groupId>org.codehaus.mojo</groupId>
134+
<artifactId>cobertura-maven-plugin</artifactId>
135+
<version>2.7</version>
136+
<configuration>
137+
<aggregate>true</aggregate>
61138
</configuration>
62139
</plugin>
63140
</reportPlugins>

0 commit comments

Comments
 (0)