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
Project build error: Non-resolvable import POM: Could not find artifact com.google.cloud:google-cloud-bom:pom:0.59.0-alpha in central (https://repo.maven.apache.org/maven2) #3601
I am beginner to JAVA and Maven. I want to use google speech to text and some other google APIs for my project in eclipse IDE and i have been trying to add a dependency in pom.xml file as follows
But, the IDE is flashing error in pom.xml file as "Project build error: Non-resolvable import POM: Could not find artifact com.google.cloud:google-cloud-bom:pom:0.59.0-alpha in central (https://repo.maven.apache.org/maven2)"
I am beginner to JAVA and Maven. I want to use google speech to text and some other google APIs for my project in eclipse IDE and i have been trying to add a dependency in pom.xml file as follows
<dependencyManagement> <dependencies> <dependency> <groupId>com.google.cloud</groupId> <artifactId>google-cloud-bom</artifactId> <version>0.59.0-alpha</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement>But, the IDE is flashing error in pom.xml file as "Project build error: Non-resolvable import POM: Could not find artifact com.google.cloud:google-cloud-bom:pom:0.59.0-alpha in central (https://repo.maven.apache.org/maven2)"
I am following the instructions posted on this page : https://github.com/GoogleCloudPlatform/google-cloud-java
I have no idea how to fix this dependency error, any help would be appreciated