Installing Aspose.Total For Java With Graddle/Kotlin

Hello,
I would like to test the product Aspose.Total in a server created in Kotlin using Graddle as dependence manager.
I added so the aspose repository:

    maven {
     url = uri("http://repository.aspose.com/repo/")
     isAllowInsecureProtocol = true
     metadataSources {
         artifact()
     }
    }

And the Aspose.Total dependency:
implementation(“com.aspose:aspose-total:21.10”)

But when it tries to download the Aspose.Total it throws an error:
Could not find aspose-total-21.10.jar (com.aspose:aspose-total:21.10).
*** Searched in the following locations:***
*** http://repository.aspose.com/repo/com/aspose/aspose-total/21.10/aspose-total-21.10.jar***

Possible solution:
*** - Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html***

@anpe

We are looking into it and will get back to you shortly.

@anpe

We have verified that this is not repository access issue. Our Aspose.Total dependency is POM base. You need to properly set Graddle/Kotlin to use pom as dependency.

A post was split to a new topic: Kotlin DSL if you add also the classifier: jdk16