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

Commit f3917e9

Browse files
chore(owlbot-java): disable re-writing clirr file in owlbot java post-processor (#1320) (#142)
1 parent 953e219 commit f3917e9

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ If you are using Maven, add this to your pom.xml file:
2727
If you are using Gradle without BOM, add this to your dependencies
2828

2929
```Groovy
30-
implementation 'com.google.cloud:google-cloud-shell:2.1.6'
30+
implementation 'com.google.cloud:google-cloud-shell:2.1.7'
3131
```
3232

3333
If you are using SBT, add this to your dependencies
3434

3535
```Scala
36-
libraryDependencies += "com.google.cloud" % "google-cloud-shell" % "2.1.6"
36+
libraryDependencies += "com.google.cloud" % "google-cloud-shell" % "2.1.7"
3737
```
3838

3939
## Authentication

0 commit comments

Comments
 (0)