Skip to content

Commit 91a389a

Browse files
authored
Prepare gameservices client for extraction (#6500)
* Prepare gameservices client for extraction * Fix versions
1 parent 513a261 commit 91a389a

9 files changed

Lines changed: 74 additions & 87 deletions

File tree

google-api-grpc/grpc-google-cloud-gameservices-v1alpha/pom.xml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55
<artifactId>grpc-google-cloud-gameservices-v1alpha</artifactId>
6-
<version>0.16.1-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-gameservices-v1alpha:current} -->
6+
<version>0.16.0</version>
77
<name>grpc-google-cloud-gameservices-v1alpha</name>
88
<description>GRPC library for grpc-google-cloud-gameservices-v1alpha</description>
99
<parent>
@@ -29,6 +29,28 @@
2929
</dependency>
3030
</dependencies>
3131

32+
<build>
33+
<plugins>
34+
<plugin>
35+
<!-- skip deployment until we fully migrate to https://github.com/googleapis/java-datacatalog -->
36+
<groupId>org.apache.maven.plugins</groupId>
37+
<artifactId>maven-deploy-plugin</artifactId>
38+
<version>2.8.2</version>
39+
<configuration>
40+
<skip>true</skip>
41+
</configuration>
42+
</plugin>
43+
<plugin>
44+
<groupId>org.sonatype.plugins</groupId>
45+
<artifactId>nexus-staging-maven-plugin</artifactId>
46+
<version>1.6.8</version>
47+
<configuration>
48+
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
49+
</configuration>
50+
</plugin>
51+
</plugins>
52+
</build>
53+
3254
<reporting>
3355
<plugins>
3456
<plugin>

google-api-grpc/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -806,12 +806,12 @@
806806
<dependency>
807807
<groupId>com.google.api.grpc</groupId>
808808
<artifactId>proto-google-cloud-gameservices-v1alpha</artifactId>
809-
<version>0.16.1-SNAPSHOT</version><!--{x-version-update:proto-google-cloud-gameservices-v1alpha:current}-->
809+
<version>0.16.0</version>
810810
</dependency>
811811
<dependency>
812812
<groupId>com.google.api.grpc</groupId>
813813
<artifactId>grpc-google-cloud-gameservices-v1alpha</artifactId>
814-
<version>0.16.1-SNAPSHOT</version><!--{x-version-update:grpc-google-cloud-gameservices-v1alpha:current}-->
814+
<version>0.16.0</version>
815815
</dependency>
816816
</dependencies>
817817
</dependencyManagement>

google-api-grpc/proto-google-cloud-gameservices-v1alpha/pom.xml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55
<artifactId>proto-google-cloud-gameservices-v1alpha</artifactId>
6-
<version>0.16.1-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-gameservices-v1alpha:current} -->
6+
<version>0.16.0</version>
77
<name>proto-google-cloud-gameservices-v1alpha</name>
88
<description>PROTO library for proto-google-cloud-gameservices-v1alpha</description>
99
<parent>
@@ -33,4 +33,26 @@
3333
<scope>compile</scope>
3434
</dependency>
3535
</dependencies>
36+
37+
<build>
38+
<plugins>
39+
<plugin>
40+
<!-- skip deployment until we fully migrate to https://github.com/googleapis/java-datacatalog -->
41+
<groupId>org.apache.maven.plugins</groupId>
42+
<artifactId>maven-deploy-plugin</artifactId>
43+
<version>2.8.2</version>
44+
<configuration>
45+
<skip>true</skip>
46+
</configuration>
47+
</plugin>
48+
<plugin>
49+
<groupId>org.sonatype.plugins</groupId>
50+
<artifactId>nexus-staging-maven-plugin</artifactId>
51+
<version>1.6.8</version>
52+
<configuration>
53+
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
54+
</configuration>
55+
</plugin>
56+
</plugins>
57+
</build>
3658
</project>

google-cloud-bom/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1133,17 +1133,17 @@
11331133
<dependency>
11341134
<groupId>com.google.api.grpc</groupId>
11351135
<artifactId>proto-google-cloud-gameservices-v1alpha</artifactId>
1136-
<version>0.16.1-SNAPSHOT</version><!--{x-version-update:proto-google-cloud-gameservices-v1alpha:current}-->
1136+
<version>0.16.0</version>
11371137
</dependency>
11381138
<dependency>
11391139
<groupId>com.google.api.grpc</groupId>
11401140
<artifactId>grpc-google-cloud-gameservices-v1alpha</artifactId>
1141-
<version>0.16.1-SNAPSHOT</version><!--{x-version-update:grpc-google-cloud-gameservices-v1alpha:current}-->
1141+
<version>0.16.0</version>
11421142
</dependency>
11431143
<dependency>
11441144
<groupId>com.google.cloud</groupId>
11451145
<artifactId>google-cloud-gameservices</artifactId>
1146-
<version>0.16.1-SNAPSHOT</version><!--{x-version-update:google-cloud-gameservices:current}-->
1146+
<version>0.16.0</version>
11471147
</dependency>
11481148
</dependencies>
11491149
</dependencyManagement>

google-cloud-clients/google-cloud-gameservices/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ Java idiomatic client for [Game Services API][product-overview].
1616
Quickstart
1717
----------
1818

19-
[//]: # ({x-version-update-start:google-cloud-gameservices:released})
2019
If you are using Maven, add this to your pom.xml file
2120
```xml
2221
<dependency>
@@ -33,7 +32,6 @@ If you are using SBT, add this to your dependencies
3332
```Scala
3433
libraryDependencies += "com.google.cloud" % "google-cloud-gameservices" % "0.16.0"
3534
```
36-
[//]: # ({x-version-update-end})
3735

3836
Authentication
3937
--------------

google-cloud-clients/google-cloud-gameservices/pom.xml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<artifactId>google-cloud-gameservices</artifactId>
5-
<version>0.16.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-gameservices:current} -->
5+
<version>0.16.0</version>
66
<packaging>jar</packaging>
77
<name>Game Services API</name>
88
<url>https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-gameservices</url>
@@ -85,6 +85,28 @@
8585
</dependency>
8686
</dependencies>
8787

88+
<build>
89+
<plugins>
90+
<plugin>
91+
<!-- skip deployment until we fully migrate to https://github.com/googleapis/java-datacatalog -->
92+
<groupId>org.apache.maven.plugins</groupId>
93+
<artifactId>maven-deploy-plugin</artifactId>
94+
<version>2.8.2</version>
95+
<configuration>
96+
<skip>true</skip>
97+
</configuration>
98+
</plugin>
99+
<plugin>
100+
<groupId>org.sonatype.plugins</groupId>
101+
<artifactId>nexus-staging-maven-plugin</artifactId>
102+
<version>1.6.8</version>
103+
<configuration>
104+
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
105+
</configuration>
106+
</plugin>
107+
</plugins>
108+
</build>
109+
88110
<reporting>
89111
<plugins>
90112
<plugin>

google-cloud-clients/google-cloud-gameservices/synth.metadata

Lines changed: 0 additions & 32 deletions
This file was deleted.

google-cloud-clients/google-cloud-gameservices/synth.py

Lines changed: 0 additions & 42 deletions
This file was deleted.

versions.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ google-cloud-dns:0.115.0-alpha:0.115.1-alpha-SNAPSHOT
2626
google-cloud-errorreporting:0.115.0-beta:0.115.1-beta-SNAPSHOT
2727
google-cloud-examples:0.115.0-alpha:0.115.1-alpha-SNAPSHOT
2828
google-cloud-firestore:1.27.0:1.27.1-SNAPSHOT
29-
google-cloud-gameservices:0.16.0:0.16.1-SNAPSHOT
3029
google-cloud-gcloud-maven-plugin:0.115.0-alpha:0.115.1-alpha-SNAPSHOT
3130
google-cloud-iamcredentials:0.42.0-alpha:0.42.1-alpha-SNAPSHOT
3231
google-cloud-kms:1.33.0:1.33.1-SNAPSHOT
@@ -75,7 +74,6 @@ grpc-google-cloud-error-reporting-v1beta1:0.80.0:0.80.1-SNAPSHOT
7574
grpc-google-cloud-firestore-admin-v1:1.27.0:1.27.1-SNAPSHOT
7675
grpc-google-cloud-firestore-v1:1.27.0:1.27.1-SNAPSHOT
7776
grpc-google-cloud-firestore-v1beta1:0.80.0:0.80.1-SNAPSHOT
78-
grpc-google-cloud-gameservices-v1alpha:0.16.0:0.16.1-SNAPSHOT
7977
grpc-google-cloud-iamcredentials-v1:0.42.0-alpha:0.42.1-alpha-SNAPSHOT
8078
grpc-google-cloud-kms-v1:0.80.0:0.80.1-SNAPSHOT
8179
grpc-google-cloud-language-v1:1.79.0:1.79.1-SNAPSHOT
@@ -132,7 +130,6 @@ proto-google-cloud-error-reporting-v1beta1:0.80.0:0.80.1-SNAPSHOT
132130
proto-google-cloud-firestore-admin-v1:1.27.0:1.27.1-SNAPSHOT
133131
proto-google-cloud-firestore-v1:1.27.0:1.27.1-SNAPSHOT
134132
proto-google-cloud-firestore-v1beta1:0.80.0:0.80.1-SNAPSHOT
135-
proto-google-cloud-gameservices-v1alpha:0.16.0:0.16.1-SNAPSHOT
136133
proto-google-cloud-iamcredentials-v1:0.42.0-alpha:0.42.1-alpha-SNAPSHOT
137134
proto-google-cloud-kms-v1:0.80.0:0.80.1-SNAPSHOT
138135
proto-google-cloud-language-v1:1.79.0:1.79.1-SNAPSHOT

0 commit comments

Comments
 (0)