You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have written some simple test project with build.sbt
name := "a1"
version := "1.0"
scalaVersion := "2.11.8"
// try to repair com.github.mpeltonen#sbt-idea;1.7.0-SNAPSHOT: not found
resolvers in ThisBuild += "Sonatype snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
lazy val a2 = RootProject(file("../a2"))
lazy val root = (project in file(".")).dependsOn(a2)
a2 is the other external project ( also just one file and dummy sbt )
if i am using sbt from cmd line evrething is fine . but in Idea i am seeing sbt error if i am using sbt plugin.
I have written some simple test project with build.sbt
a2 is the other external project ( also just one file and dummy sbt )
if i am using sbt from cmd line evrething is fine . but in Idea i am seeing sbt error if i am using sbt plugin.
if I remove dependency from a2 - everething works fine.
I have some questions :
Thank You.
The text was updated successfully, but these errors were encountered: