Failed to load SBT configuration in Activator Activator

I am currently trying to start the application for playback using Activator Activator, but it cannot load the SBT configuration, and I get this error;

/play-slick/build.sbt:30: error: reference to fork is ambiguous;
it is imported twice in the same scope by
import _root_.play.Project._
and import Keys._
fork in run := true
^
Type error in expression
Failed to load project.

Does this mean that I downloaded SBT twice, and what can I do to solve this problem? Thank.

+4
source share
2 answers

I just wanted to say that I encountered the same problem when trying to use the Play-Slick example associated with the Play Play Materials page .

, , , Github, Seth Tisue , corruptmemory build.sbt:

fork in run := true

, IntelliJ . ( , )

+2

fork in run := true

from build.sbt cmd

+2

Source: https://habr.com/ru/post/1598842/


All Articles