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

Commit ddd3020

Browse files
fix(java): add -ntp flag to native image testing command (#1299) (#518)
1 parent c48f5cb commit ddd3020

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Diff for: .github/.OwlBot.lock.yaml

+1-1
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:5b8c790f57cca57e6b37ba25f79291265c218cea3e6ba9714b001910ab3f1419
3+
digest: sha256:a4d7b2cfc6a9d6b378a6b2458740eae15fcab28854bd23dad3a15102d2e47c87

Diff for: .kokoro/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ integration)
7171
;;
7272
graalvm)
7373
# Run Unit and Integration Tests with Native Image
74-
mvn test -Pnative -Penable-integration-tests
74+
mvn -ntp -Pnative -Penable-integration-tests test
7575
RETURN_CODE=$?
7676
;;
7777
samples)

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,20 @@ If you are using Maven, add this to your pom.xml file:
1919
<dependency>
2020
<groupId>com.google.cloud</groupId>
2121
<artifactId>google-cloud-monitoring-dashboard</artifactId>
22-
<version>2.1.3</version>
22+
<version>2.2.0</version>
2323
</dependency>
2424
```
2525

2626
If you are using Gradle without BOM, add this to your dependencies
2727

2828
```Groovy
29-
implementation 'com.google.cloud:google-cloud-monitoring-dashboard:2.1.3'
29+
implementation 'com.google.cloud:google-cloud-monitoring-dashboard:2.2.0'
3030
```
3131

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

3434
```Scala
35-
libraryDependencies += "com.google.cloud" % "google-cloud-monitoring-dashboard" % "2.1.3"
35+
libraryDependencies += "com.google.cloud" % "google-cloud-monitoring-dashboard" % "2.2.0"
3636
```
3737

3838
## Authentication

0 commit comments

Comments
 (0)