Home > Mobile >  Aspose dependency not working with gradle
Aspose dependency not working with gradle

Time:06-27

I am trying to add Aspose cells dependency in gradle but I am not able to make it work . Attaching the gradle file and the error in terminal for the same.

enter image description here

enter image description here

CodePudding user response:

Please note, http access has been disabled now due to security reasons. Our repository URL is https://repository.aspose.com/repo/ which is only accessible through Maven or Gradle clients. You can explore our repository through https://repository.aspose.com/#/artifacts/browse/tree/General/repo.

For example, you may update your maven configurations as below:

....
<repositories>

      <repository>

          <id>AsposeJavaAPI</id>

          <name>Aspose Java API</name>

          <url>https://repository.aspose.com/repo/</url>

   </repository>

</repositories>

For complete reference see the document on how to install Aspose.Cells for Java from Maven Repository.

  • Related