I tried to install Aspose.Page through Gradle following the Manual here Installation | Aspose.Page for Java which is only for Maven. So i wrote it like this in the gradle.build file:
repositories {
maven {
url "https://artifact.aspose.com/repo/"
}
mavenCentral()
}
dependencies {
implementation group: 'com.aspose', name: 'aspose-page', version: '22.9'
}
But the package is not there and i get an error:
Could not find com.aspose:aspose-page:22.9.
Can you tell me what I am doing wrong?
Thank You