Executed mvn clean package as per the documentation on Hello-Samza. The build fails.
[ERROR] Failed to execute goal on project hello-samza: Could not resolve dependencies for project org.apache.samza:hello-samza:jar:0.14.1-SNAPSHOT: Failed to collect dependencies at org.apache.samza:samza-api:jar:0.14.1-SNAPSHOT: Failed to read artifact descriptor for org.apache.samza:samza-api:jar:0.14.1-SNAPSHOT: Could not transfer artifact org.apache.samza:samza-api:pom:0.14.1-SNAPSHOT from/to scala-tools.org (https://oss.sonatype.org/content/groups/scala-tools): Access denied to: https://oss.sonatype.org/content/groups/scala-tools/org/apache/samza/samza-api/0.14.1-SNAPSHOT/samza-api-0.14.1-SNAPSHOT.pom , ReasonPhrase:Forbidden. -> [Help 1] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal on project hello-samza: Could not resolve dependencies for project org.apache.samza:hello-samza:jar:0.14.1-SNAPSHOT: Failed to collect dependencies at org.apache.samza:samza-api:jar:0.14.1-SNAPSHOT
I ran into this same issue last week. If memory serves, the following steps should work around the issue:
Samza 0.14.1
from github./gradlew publishToMavenLocal
to make the jars locally availablehello-samza
project, replace all instances of0.14.1-SNAPSHOT
with0.14.1
in gradle.properties , pom.xml , and deploy.shhello-samza
normally