You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 16, 2021. It is now read-only.
Error thrown by plugin:
Please configure you google cloud account by logging using gcloud and specify a default project
Reason: keyPath is null
Is there is definite way to pass the value of keyPath?
I am getting this issue in my project which is trying to download artifacts from google buckets.
I am authenticated with my GCP.
I have set value of GOOGLE_APPLICATION_CREDENTIALS correctly. Since keyPath is null code never goes to default.
I have tried providing the value of keyPath in my pom.xml like this: <plugin> <groupId>com.gkatzioura.maven.cloud</groupId> <artifactId>google-storage-wagon</artifactId> <version>2.3</version> <executions> <execution> <id>download</id> <phase>install</phase> <configuration> <keyPath>../src/test/resources/serviceacc.json</keyPath> </configuration> <goals> <goal>gcs-download</goal> </goals> </execution> </executions> </plugin>
Plugin Version: 2.3
The text was updated successfully, but these errors were encountered:
Error thrown by plugin:
Please configure you google cloud account by logging using gcloud and specify a default project
Reason: keyPath is null
Is there is definite way to pass the value of keyPath?
I am getting this issue in my project which is trying to download artifacts from google buckets.
I am authenticated with my GCP.
I have set value of GOOGLE_APPLICATION_CREDENTIALS correctly. Since keyPath is null code never goes to default.
I have tried providing the value of keyPath in my pom.xml like this:
<plugin> <groupId>com.gkatzioura.maven.cloud</groupId> <artifactId>google-storage-wagon</artifactId> <version>2.3</version> <executions> <execution> <id>download</id> <phase>install</phase> <configuration> <keyPath>../src/test/resources/serviceacc.json</keyPath> </configuration> <goals> <goal>gcs-download</goal> </goals> </execution> </executions> </plugin>
Plugin Version: 2.3
The text was updated successfully, but these errors were encountered: