Skip to content
Permalink
Browse files
fix(java): add -ntp flag to native image testing command (#1299) (#97)
  • Loading branch information
gcf-owl-bot[bot] committed Dec 6, 2021
1 parent 469383c commit 8d3057c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
@@ -1,3 +1,3 @@
docker:
image: gcr.io/cloud-devrel-public-resources/owlbot-java:latest
digest: sha256:5b8c790f57cca57e6b37ba25f79291265c218cea3e6ba9714b001910ab3f1419
digest: sha256:a4d7b2cfc6a9d6b378a6b2458740eae15fcab28854bd23dad3a15102d2e47c87
@@ -71,7 +71,7 @@ integration)
;;
graalvm)
# Run Unit and Integration Tests with Native Image
mvn test -Pnative -Penable-integration-tests
mvn -ntp -Pnative -Penable-integration-tests test
RETURN_CODE=$?
;;
samples)
@@ -19,20 +19,20 @@ If you are using Maven, add this to your pom.xml file:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-network-management</artifactId>
<version>1.1.3</version>
<version>1.1.4</version>
</dependency>
```

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

```Groovy
implementation 'com.google.cloud:google-cloud-network-management:1.1.3'
implementation 'com.google.cloud:google-cloud-network-management:1.1.4'
```

If you are using SBT, add this to your dependencies

```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-network-management" % "1.1.3"
libraryDependencies += "com.google.cloud" % "google-cloud-network-management" % "1.1.4"
```

## Authentication

0 comments on commit 8d3057c

Please sign in to comment.