Reputation: 41
I'm trying to use the Google Cloud Speech API to recognize speech.
I'm following the example code at
https://github.com/GoogleCloudPlatform/java-docs-samples/tree/master/speech/grpc
I already done with run mvn package
but I can't find the com.google.cloud.speech.v1beta1
package that is used in the Spring MVC application.
Can resolve the com.google.cloud.speech.v1beta1 package
How i find this package or how i can use it in Spring MVC maven project ? Thanks.
Upvotes: 3
Views: 2253
Reputation: 29168
You have missed the jar files.
For this, you can go to your console. Then go to the project folder where pom.xml.
Then run this 2 command,
mvn eclipse:clean
mvn eclipse:eclipse
full clean-up and restarting procedure:
*.iml
files
and all .idea
folders (there should be one per module)mvn clean install
from the command lineUpvotes: 1