|
6 | 6 | <packaging>pom</packaging> |
7 | 7 | <version>3.19.1</version><!-- {x-version-update:google-cloud-bigquerystorage:current} --> |
8 | 8 | <name>BigQuery Storage Parent</name> |
9 | | - <url>https://github.com/googleapis/java-bigquerystorage</url> |
| 9 | + <url>https://github.com/googleapis/google-cloud-java</url> |
10 | 10 | <description> |
11 | 11 | Java idiomatic client for Google Cloud Platform services. |
12 | 12 | </description> |
13 | 13 |
|
14 | 14 | <parent> |
15 | 15 | <groupId>com.google.cloud</groupId> |
16 | | - <artifactId>sdk-platform-java-config</artifactId> |
17 | | - <version>3.55.1</version> |
| 16 | + <artifactId>google-cloud-jar-parent</artifactId> |
| 17 | + <version>1.77.0-SNAPSHOT</version><!-- {x-version-update:google-cloud-java:current} --> |
| 18 | + <relativePath>../google-cloud-jar-parent/pom.xml</relativePath> |
18 | 19 | </parent> |
19 | 20 |
|
20 | 21 | <developers> |
|
32 | 33 | <name>Google LLC</name> |
33 | 34 | </organization> |
34 | 35 | <scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false" child.scm.url.inherit.append.path="false"> |
35 | | - < connection>scm:git: [email protected]:googleapis/ java-bigquerystorage.git</ connection> |
36 | | - < developerConnection>scm:git: [email protected]:googleapis/ java-bigquerystorage.git</ developerConnection> |
37 | | - <url>https://github.com/googleapis/java-bigquerystorage</url> |
| 36 | + < connection>scm:git: [email protected]:googleapis/ google-cloud-java.git</ connection> |
| 37 | + < developerConnection>scm:git: [email protected]:googleapis/ google-cloud-java.git</ developerConnection> |
| 38 | + <url>https://github.com/googleapis/google-cloud-java</url> |
38 | 39 | <tag>HEAD</tag> |
39 | 40 | </scm> |
40 | 41 | <issueManagement> |
41 | | - <url>https://github.com/googleapis/java-bigquerystorage/issues</url> |
| 42 | + <url>https://github.com/googleapis/google-cloud-java/issues</url> |
42 | 43 | <system>GitHub Issues</system> |
43 | 44 | </issueManagement> |
44 | 45 |
|
|
141 | 142 | <version>20250517</version> |
142 | 143 | </dependency> |
143 | 144 |
|
144 | | - <!-- Test dependencies --> |
145 | | - <!-- JUnit 4.x is still needed as the gapic-generator still generates tests with it --> |
146 | | - <!-- Remove once the gapic-generator is able to generate JUnit 5.x tests --> |
147 | 145 | <dependency> |
148 | 146 | <groupId>junit</groupId> |
149 | 147 | <artifactId>junit</artifactId> |
|
222 | 220 | <module>google-cloud-bigquerystorage-bom</module> |
223 | 221 | </modules> |
224 | 222 |
|
225 | | - <reporting> |
226 | | - <plugins> |
227 | | - <plugin> |
228 | | - <groupId>org.apache.maven.plugins</groupId> |
229 | | - <artifactId>maven-project-info-reports-plugin</artifactId> |
230 | | - <version>3.9.0</version> |
231 | | - <reportSets> |
232 | | - <reportSet> |
233 | | - <reports> |
234 | | - <report>index</report> |
235 | | - <report>dependency-info</report> |
236 | | - <report>team</report> |
237 | | - <report>ci-management</report> |
238 | | - <report>issue-management</report> |
239 | | - <report>licenses</report> |
240 | | - <report>scm</report> |
241 | | - <report>dependency-management</report> |
242 | | - <report>distribution-management</report> |
243 | | - <report>summary</report> |
244 | | - <report>modules</report> |
245 | | - </reports> |
246 | | - </reportSet> |
247 | | - </reportSets> |
248 | | - <configuration> |
249 | | - <dependencyDetailsEnabled>true</dependencyDetailsEnabled> |
250 | | - <artifactId>${site.installationModule}</artifactId> |
251 | | - <packaging>jar</packaging> |
252 | | - </configuration> |
253 | | - </plugin> |
254 | | - <plugin> |
255 | | - <groupId>org.apache.maven.plugins</groupId> |
256 | | - <artifactId>maven-javadoc-plugin</artifactId> |
257 | | - <reportSets> |
258 | | - <reportSet> |
259 | | - <id>html</id> |
260 | | - <reports> |
261 | | - <report>aggregate</report> |
262 | | - <report>javadoc</report> |
263 | | - </reports> |
264 | | - </reportSet> |
265 | | - </reportSets> |
266 | | - <configuration> |
267 | | - <doclint>none</doclint> |
268 | | - <show>protected</show> |
269 | | - <nohelp>true</nohelp> |
270 | | - <outputDirectory>${project.build.directory}/javadoc</outputDirectory> |
271 | | - <groups> |
272 | | - <group> |
273 | | - <title>Test helpers packages</title> |
274 | | - <packages>com.google.cloud.testing</packages> |
275 | | - </group> |
276 | | - <group> |
277 | | - <title>SPI packages</title> |
278 | | - <packages>com.google.cloud.spi*</packages> |
279 | | - </group> |
280 | | - </groups> |
281 | | - |
282 | | - <links> |
283 | | - <link>https://grpc.io/grpc-java/javadoc/</link> |
284 | | - <link>https://developers.google.com/protocol-buffers/docs/reference/java/</link> |
285 | | - <link>https://googleapis.dev/java/google-auth-library/latest/</link> |
286 | | - <link>https://googleapis.dev/java/gax/latest/</link> |
287 | | - <link>https://googleapis.github.io/api-common-java/</link> |
288 | | - </links> |
289 | | - </configuration> |
290 | | - </plugin> |
291 | | - </plugins> |
292 | | - </reporting> |
293 | | - |
294 | 223 | <profiles> |
295 | 224 | <profile> |
296 | 225 | <id>include-samples</id> |
|
0 commit comments