Skip to content

Commit fa54eb2

Browse files
authored
chore: update dependencies for regapic (#1467)
* chore: update dependencies for regapic * add more dependencies and trigger comment * update goldens * fix indentation * remove duplicate gax-httpjson dependency * remove duplicated dependencies
1 parent 4cf9ab3 commit fa54eb2

File tree

3 files changed

+59
-1
lines changed

3 files changed

+59
-1
lines changed

docker/owlbot/java/templates/poms/cloud_pom.xml.j2

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,22 @@
5858
<groupId>com.google.api</groupId>
5959
<artifactId>gax-grpc</artifactId>
6060
</dependency>
61+
<dependency>
62+
<groupId>com.google.api</groupId>
63+
<artifactId>gax-httpjson</artifactId>
64+
</dependency>
65+
<dependency>
66+
<groupId>com.google.api.grpc</groupId>
67+
<artifactId>grpc-google-common-protos</artifactId>
68+
</dependency>
69+
<dependency>
70+
<groupId>com.google.api.grpc</groupId>
71+
<artifactId>proto-google-iam-v1</artifactId>
72+
</dependency>
73+
<dependency>
74+
<groupId>com.google.api.grpc</groupId>
75+
<artifactId>grpc-google-iam-v1</artifactId>
76+
</dependency>
6177
<dependency>
6278
<groupId>org.threeten</groupId>
6379
<artifactId>threetenbp</artifactId>
@@ -77,12 +93,24 @@
7793
<scope>test</scope>
7894
</dependency>{% endfor %}
7995
<!-- Need testing utility classes for generated gRPC clients tests -->
96+
<dependency>
97+
<groupId>com.google.api</groupId>
98+
<artifactId>gax</artifactId>
99+
<classifier>testlib</classifier>
100+
<scope>test</scope>
101+
</dependency>
80102
<dependency>
81103
<groupId>com.google.api</groupId>
82104
<artifactId>gax-grpc</artifactId>
83105
<classifier>testlib</classifier>
84106
<scope>test</scope>
85107
</dependency>
108+
<dependency>
109+
<groupId>com.google.api</groupId>
110+
<artifactId>gax-httpjson</artifactId>
111+
<classifier>testlib</classifier>
112+
<scope>test</scope>
113+
</dependency>
86114
</dependencies>
87115

88116
<profiles>

docker/owlbot/java/tests/new-client/golden/google-cloud-foo/pom.xml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,22 @@
5858
<groupId>com.google.api</groupId>
5959
<artifactId>gax-grpc</artifactId>
6060
</dependency>
61+
<dependency>
62+
<groupId>com.google.api</groupId>
63+
<artifactId>gax-httpjson</artifactId>
64+
</dependency>
65+
<dependency>
66+
<groupId>com.google.api.grpc</groupId>
67+
<artifactId>grpc-google-common-protos</artifactId>
68+
</dependency>
69+
<dependency>
70+
<groupId>com.google.api.grpc</groupId>
71+
<artifactId>proto-google-iam-v1</artifactId>
72+
</dependency>
73+
<dependency>
74+
<groupId>com.google.api.grpc</groupId>
75+
<artifactId>grpc-google-iam-v1</artifactId>
76+
</dependency>
6177
<dependency>
6278
<groupId>org.threeten</groupId>
6379
<artifactId>threetenbp</artifactId>
@@ -77,12 +93,24 @@
7793
<scope>test</scope>
7894
</dependency>
7995
<!-- Need testing utility classes for generated gRPC clients tests -->
96+
<dependency>
97+
<groupId>com.google.api</groupId>
98+
<artifactId>gax</artifactId>
99+
<classifier>testlib</classifier>
100+
<scope>test</scope>
101+
</dependency>
80102
<dependency>
81103
<groupId>com.google.api</groupId>
82104
<artifactId>gax-grpc</artifactId>
83105
<classifier>testlib</classifier>
84106
<scope>test</scope>
85107
</dependency>
108+
<dependency>
109+
<groupId>com.google.api</groupId>
110+
<artifactId>gax-httpjson</artifactId>
111+
<classifier>testlib</classifier>
112+
<scope>test</scope>
113+
</dependency>
86114
</dependencies>
87115

88116
<profiles>

synthtool/gcp/templates/java_library/.kokoro/common.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,6 @@ function retry_with_backoff {
5555
## Helper functionss
5656
function now() { date +"%Y-%m-%d %H:%M:%S" | tr -d '\n'; }
5757
function msg() { println "$*" >&2; }
58-
function println() { printf '%s\n' "$(now) $*"; }
58+
function println() { printf '%s\n' "$(now) $*"; }
59+
60+
## Helper comment to trigger updated repo dependency release

0 commit comments

Comments
 (0)