This repository was archived by the owner on Sep 16, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
docker :
2
2
image : gcr.io/cloud-devrel-public-resources/owlbot-java:latest
3
- digest : sha256:a4d7b2cfc6a9d6b378a6b2458740eae15fcab28854bd23dad3a15102d2e47c87
3
+ digest : sha256:efbfc5e9ff713005a037941f8ebcc0c69cc630e3ad934675ee26868705a30897
Original file line number Diff line number Diff line change @@ -47,15 +47,15 @@ set +e
47
47
48
48
case ${JOB_TYPE} in
49
49
test)
50
- mvn test -B -Dclirr.skip=true -Denforcer.skip=true
50
+ mvn test -B -ntp - Dclirr.skip=true -Denforcer.skip=true
51
51
RETURN_CODE=$?
52
52
;;
53
53
lint)
54
- mvn com.coveo:fmt-maven-plugin:check
54
+ mvn com.coveo:fmt-maven-plugin:check -B -ntp
55
55
RETURN_CODE=$?
56
56
;;
57
57
javadoc)
58
- mvn javadoc:javadoc javadoc:test-javadoc
58
+ mvn javadoc:javadoc javadoc:test-javadoc -B -ntp
59
59
RETURN_CODE=$?
60
60
;;
61
61
integration)
@@ -71,7 +71,7 @@ integration)
71
71
;;
72
72
graalvm)
73
73
# Run Unit and Integration Tests with Native Image
74
- mvn -ntp -Pnative -Penable-integration-tests test
74
+ mvn -B ${INTEGRATION_TEST_ARGS} - ntp -Pnative -Penable-integration-tests test
75
75
RETURN_CODE=$?
76
76
;;
77
77
samples)
@@ -104,7 +104,7 @@ samples)
104
104
fi
105
105
;;
106
106
clirr)
107
- mvn -B -Denforcer.skip=true clirr:check
107
+ mvn -B -ntp - Denforcer.skip=true clirr:check
108
108
RETURN_CODE=$?
109
109
;;
110
110
* )
Original file line number Diff line number Diff line change @@ -22,20 +22,20 @@ If you are using Maven, add this to your pom.xml file:
22
22
<dependency >
23
23
<groupId >com.google.cloud</groupId >
24
24
<artifactId >google-cloud-video-transcoder</artifactId >
25
- <version >0.4.2 </version >
25
+ <version >0.4.3 </version >
26
26
</dependency >
27
27
```
28
28
29
29
If you are using Gradle without BOM, add this to your dependencies
30
30
31
31
``` Groovy
32
- implementation 'com.google.cloud:google-cloud-video-transcoder:0.4.2 '
32
+ implementation 'com.google.cloud:google-cloud-video-transcoder:0.4.3 '
33
33
```
34
34
35
35
If you are using SBT, add this to your dependencies
36
36
37
37
``` Scala
38
- libraryDependencies += " com.google.cloud" % " google-cloud-video-transcoder" % " 0.4.2 "
38
+ libraryDependencies += " com.google.cloud" % " google-cloud-video-transcoder" % " 0.4.3 "
39
39
```
40
40
41
41
## Authentication
You can’t perform that action at this time.
0 commit comments