Wednesday, December 30, 2020

Extracting structure failed --- Error while importing SBT project

 I have used the following plugin

addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.8.2") 

 Got the following error.


When  i change the plugin version to the following then everything is working fine.


addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.2")

No comments:

Post a Comment

Recent Post

Databricks Delta table merge Example

here's some sample code that demonstrates a merge operation on a Delta table using PySpark:   from pyspark.sql import SparkSession # cre...