Skip to content
This repository was archived by the owner on Sep 16, 2023. It is now read-only.

Commit f60d3a9

Browse files
chore(owlbot-java): disable re-writing clirr file in owlbot java post-processor (#1320) (#280)
1 parent 0ae7545 commit f60d3a9

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/.OwlBot.lock.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
docker:
22
image: gcr.io/cloud-devrel-public-resources/owlbot-java:latest
3-
digest: sha256:a4d7b2cfc6a9d6b378a6b2458740eae15fcab28854bd23dad3a15102d2e47c87
3+
digest: sha256:efbfc5e9ff713005a037941f8ebcc0c69cc630e3ad934675ee26868705a30897

.kokoro/build.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ set +e
4747

4848
case ${JOB_TYPE} in
4949
test)
50-
mvn test -B -Dclirr.skip=true -Denforcer.skip=true
50+
mvn test -B -ntp -Dclirr.skip=true -Denforcer.skip=true
5151
RETURN_CODE=$?
5252
;;
5353
lint)
54-
mvn com.coveo:fmt-maven-plugin:check
54+
mvn com.coveo:fmt-maven-plugin:check -B -ntp
5555
RETURN_CODE=$?
5656
;;
5757
javadoc)
58-
mvn javadoc:javadoc javadoc:test-javadoc
58+
mvn javadoc:javadoc javadoc:test-javadoc -B -ntp
5959
RETURN_CODE=$?
6060
;;
6161
integration)
@@ -71,7 +71,7 @@ integration)
7171
;;
7272
graalvm)
7373
# 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
7575
RETURN_CODE=$?
7676
;;
7777
samples)
@@ -104,7 +104,7 @@ samples)
104104
fi
105105
;;
106106
clirr)
107-
mvn -B -Denforcer.skip=true clirr:check
107+
mvn -B -ntp -Denforcer.skip=true clirr:check
108108
RETURN_CODE=$?
109109
;;
110110
*)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,20 @@ If you are using Maven, add this to your pom.xml file:
2222
<dependency>
2323
<groupId>com.google.cloud</groupId>
2424
<artifactId>google-cloud-video-transcoder</artifactId>
25-
<version>0.4.2</version>
25+
<version>0.4.3</version>
2626
</dependency>
2727
```
2828

2929
If you are using Gradle without BOM, add this to your dependencies
3030

3131
```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'
3333
```
3434

3535
If you are using SBT, add this to your dependencies
3636

3737
```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"
3939
```
4040

4141
## Authentication

0 commit comments

Comments
 (0)