sbt.ResolveException: unresolved dependency: com.aspose#aspose.cells;16.11.0:

sbt.ResolveException: unresolved dependency: com.aspose#aspose.cells;16.11.0:

How can I resolve dependency.? I have tried all possible ways. I am working with play using Intellij. How can I add dependency in sbt.build ? I have found :
// Aspose.Cells | Excel Spreadsheet Processing Java Library
libraryDependencies += “com.aspose” % “aspose-cells” % “16.11.0”

to add dependency from maven repository:
https://mvnrepository.com/artifact/com.aspose/aspose-cells/16.11.0
I don’t know why I am getting this error ?

Is there any other way to add aspose cell dependency in sbt ?

@sjshah

Thanks for considering Aspose APIs.

Please use the following dependency and it will automatically download the 16.11.0 from Aspose Maven Repository.

<dependency>
	<groupId>com.aspose</groupId>
	<artifactId>aspose-cells</artifactId>
	<version>16.11.0</version>
</dependency>

Here is a complete pom.xml for your help.

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>TestProj</groupId>
  <artifactId>TestProj</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <build>
	<sourceDirectory>src</sourceDirectory>
	<plugins>
	  <plugin>
		<artifactId>maven-compiler-plugin</artifactId>
		<version>3.5.1</version>
		<configuration>
		  <source>1.8</source>
		  <target>1.8</target>
		</configuration>
	  </plugin>
	</plugins>
  </build>
	<repositories>
		<repository>
			<id>AsposeJavaAPI</id>
			<name>Aspose Java API</name>
			<url>http://maven.aspose.com/repository/simple/ext-release-local/</url>
		</repository>
	</repositories>
		<dependencies>
		<dependency>
			<groupId>com.aspose</groupId>
			<artifactId>aspose-cells</artifactId>
			<version>16.11.0</version>
		</dependency>
	</dependencies>
</project>

Thanks alot for your response. I am using sbt not maven. It’s working with maven not with sbt.

@sjshah

Aspose.Cells for Java releases are present on Maven. Here is a download link of your specified version. Please see if it helps you in resolving your issue.

Aspose.Cells | Excel Spreadsheet Processing Java Library