Skip to content

Commit 2bdb042

Browse files
committed
Merge branch 'master' of git://github.com/GoogleCloudPlatform/gcloud-java
2 parents 736a0f5 + e391e41 commit 2bdb042

6 files changed

Lines changed: 488 additions & 0 deletions

File tree

gcloud-java-core/pom.xml

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,102 @@
9090
<scope>test</scope>
9191
</dependency>
9292
</dependencies>
93+
<build>
94+
<plugins>
95+
<plugin>
96+
<groupId>org.apache.maven.plugins</groupId>
97+
<artifactId>maven-site-plugin</artifactId>
98+
<version>3.4</version>
99+
<configuration>
100+
<skipDeploy>true</skipDeploy>
101+
<reportPlugins>
102+
<plugin>
103+
<groupId>org.apache.maven.plugins</groupId>
104+
<artifactId>maven-changelog-plugin</artifactId>
105+
<version>2.3</version>
106+
</plugin>
107+
<plugin>
108+
<groupId>org.apache.maven.plugins</groupId>
109+
<artifactId>maven-project-info-reports-plugin</artifactId>
110+
<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>
131+
<configuration>
132+
<aggregate>true</aggregate>
133+
<quiet>true</quiet>
134+
<dependencyDetailsEnabled>true</dependencyDetailsEnabled>
135+
<dependencyLocationsEnabled>true</dependencyLocationsEnabled>
136+
<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>
184+
</configuration>
185+
</plugin>
186+
</reportPlugins>
187+
</configuration>
188+
</plugin>
189+
</plugins>
190+
</build>
93191
</project>

gcloud-java-datastore/pom.xml

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,102 @@
3838
<scope>test</scope>
3939
</dependency>
4040
</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>
41139
</project>

gcloud-java-examples/pom.xml

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,100 @@
2929
<skip>false</skip>
3030
</configuration>
3131
</plugin>
32+
<plugin>
33+
<groupId>org.apache.maven.plugins</groupId>
34+
<artifactId>maven-site-plugin</artifactId>
35+
<version>3.4</version>
36+
<configuration>
37+
<skipDeploy>true</skipDeploy>
38+
<reportPlugins>
39+
<plugin>
40+
<groupId>org.apache.maven.plugins</groupId>
41+
<artifactId>maven-changelog-plugin</artifactId>
42+
<version>2.3</version>
43+
</plugin>
44+
<plugin>
45+
<groupId>org.apache.maven.plugins</groupId>
46+
<artifactId>maven-project-info-reports-plugin</artifactId>
47+
<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>
68+
<configuration>
69+
<aggregate>true</aggregate>
70+
<quiet>true</quiet>
71+
<dependencyDetailsEnabled>true</dependencyDetailsEnabled>
72+
<dependencyLocationsEnabled>true</dependencyLocationsEnabled>
73+
<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>
121+
</configuration>
122+
</plugin>
123+
</reportPlugins>
124+
</configuration>
125+
</plugin>
32126
</plugins>
33127
</build>
34128
</project>

0 commit comments

Comments
 (0)