Team,
I am using all of the Aspose products like Email, PDF, Slides, Word… almost all.
We did not had build issues. Now we have a build issue which we never had.
My configuration :
repositories {
mavenLocal()
mavenCentral {
content { excludeGroup “com.aspose” }
}
maven {
url “https://repository.aspose.com/repo/”
content {includeGroup “com.aspose” }
}
maven {
url ‘https://artifacts.xyz.com/artifactory/my_company.maven.my_product.release’
content {includeGroup “com.aspose” }
credentials {
username = “${artifactory_user}”
password = “${artifactory_password}”
}
}
}
Error :
Caused by: org.gradle.internal.resource.transport.http.HttpErrorStatusCodeException: Could not GET ‘https://repository.aspose.com/repo/com/aspose/aspose-words/21.11/aspose-words-21.11.pom’. Received status code 403 from server: Forbidden
We changed url “https://artifacts.aspose.com/repo/” to “https://repository.aspose.com/repo/”
What could go wrong in this.