File tree Expand file tree Collapse file tree 9 files changed +49
-10
lines changed
google-http-client-apache-v2
src/main/java/com/google/api/client/util Expand file tree Collapse file tree 9 files changed +49
-10
lines changed Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
docker :
15
15
image : gcr.io/cloud-devrel-public-resources/owlbot-java:latest
16
- digest : sha256:fc52b202aa298a50a12c64efd04fea3884d867947effe2fa85382a246c09e813
17
- # created: 2022-04-06T16:30:03.627422514Z
16
+ digest : sha256:2567a120ce90fadb6201999b87d649d9f67459de28815ad239bce9ebfaa18a74
17
+ # created: 2022-05-19T15:12:45.278246753Z
Original file line number Diff line number Diff line change @@ -74,6 +74,11 @@ graalvm)
74
74
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test
75
75
RETURN_CODE=$?
76
76
;;
77
+ graalvm17)
78
+ # Run Unit and Integration Tests with Native Image
79
+ mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test
80
+ RETURN_CODE=$?
81
+ ;;
77
82
samples)
78
83
SAMPLES_DIR=samples
79
84
# only run ITs in snapshot/ on presubmit PRs. run ITs in all 3 samples/ subdirectories otherwise.
Original file line number Diff line number Diff line change
1
+ # Format: //devtools/kokoro/config/proto/build.proto
2
+
3
+ # Configure the docker image for kokoro-trampoline.
4
+ env_vars: {
5
+ key: " TRAMPOLINE_IMAGE"
6
+ value: " gcr.io/cloud-devrel-kokoro-resources/graalvm17"
7
+ }
8
+
9
+ env_vars: {
10
+ key: " JOB_TYPE"
11
+ value: " graalvm17"
12
+ }
13
+
14
+ # TODO: remove this after we've migrated all tests and scripts
15
+ env_vars: {
16
+ key: " GCLOUD_PROJECT"
17
+ value: " gcloud-devel"
18
+ }
19
+
20
+ env_vars: {
21
+ key: " GOOGLE_CLOUD_PROJECT"
22
+ value: " gcloud-devel"
23
+ }
24
+
25
+ env_vars: {
26
+ key: " GOOGLE_APPLICATION_CREDENTIALS"
27
+ value: " secret_manager/java-it-service-account"
28
+ }
29
+
30
+ env_vars: {
31
+ key: " SECRET_MANAGER_KEYS"
32
+ value: " java-it-service-account"
33
+ }
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ the `dependencyManagement` section of your `pom.xml`:
23
23
<dependency >
24
24
<groupId >com.google.cloud</groupId >
25
25
<artifactId >libraries-bom</artifactId >
26
- <version >25.1 .0</version >
26
+ <version >25.4 .0</version >
27
27
<type >pom</type >
28
28
<scope >import</scope >
29
29
</dependency >
Original file line number Diff line number Diff line change 68
68
<plugin >
69
69
<groupId >org.apache.felix</groupId >
70
70
<artifactId >maven-bundle-plugin</artifactId >
71
- <version >5.1.4 </version >
71
+ <version >5.1.6 </version >
72
72
<executions >
73
73
<execution >
74
74
<id >bundle-manifest</id >
Original file line number Diff line number Diff line change 89
89
<plugin >
90
90
<groupId >org.apache.felix</groupId >
91
91
<artifactId >maven-bundle-plugin</artifactId >
92
- <version >5.1.4 </version >
92
+ <version >5.1.6 </version >
93
93
<executions >
94
94
<execution >
95
95
<id >bundle-manifest</id >
Original file line number Diff line number Diff line change @@ -179,6 +179,7 @@ public static <S extends Serializable> S deserialize(InputStream inputStream) th
179
179
* @since 1.16
180
180
* @deprecated use java.nio.file.Path#isSymbolicLink
181
181
*/
182
+ @ Deprecated
182
183
public static boolean isSymbolicLink (File file ) throws IOException {
183
184
// first try using Java 7
184
185
try {
Original file line number Diff line number Diff line change 125
125
<dependency >
126
126
<groupId >com.google.errorprone</groupId >
127
127
<artifactId >error_prone_annotations</artifactId >
128
- <version >2.13.1 </version >
128
+ <version >2.14.0 </version >
129
129
</dependency >
130
130
<dependency >
131
131
<groupId >com.google.appengine</groupId >
526
526
- Internally, update the default features.json file
527
527
-->
528
528
<project .http-client.version>1.41.8</project .http-client.version><!-- {x-version-update:google-http-client-parent:current} -->
529
- <project .appengine.version>2.0.4 </project .appengine.version>
529
+ <project .appengine.version>2.0.5 </project .appengine.version>
530
530
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
531
531
<project .jsr305.version>3.0.2</project .jsr305.version>
532
532
<project .gson.version>2.9.0</project .gson.version>
533
- <project .jackson-core2.version>2.13.2 </project .jackson-core2.version>
534
- <project .protobuf-java.version>3.20.1 </project .protobuf-java.version>
533
+ <project .jackson-core2.version>2.13.3 </project .jackson-core2.version>
534
+ <project .protobuf-java.version>3.21.0 </project .protobuf-java.version>
535
535
<project .guava.version>30.1.1-android</project .guava.version>
536
536
<project .xpp3.version>1.1.4c</project .xpp3.version>
537
537
<project .httpclient.version>4.5.13</project .httpclient.version>
Original file line number Diff line number Diff line change 31
31
<dependency >
32
32
<groupId >com.google.cloud</groupId >
33
33
<artifactId >libraries-bom</artifactId >
34
- <version >25.2 .0</version >
34
+ <version >25.3 .0</version >
35
35
<type >pom</type >
36
36
<scope >import</scope >
37
37
</dependency >
You can’t perform that action at this time.
0 commit comments