Why doesn't sbt create project files?

后端 未结 5 1017
情话喂你
情话喂你 2020-12-13 08:16

I have tried to install SBT on my macbook. When I run it, it doesn\'t ask me for any project definitions (e.g. title) and simply says

[info] Set current pro         


        
5条回答
  •  我在风中等你
    2020-12-13 08:27

    As described in the np plugin readme, the required steps would be :

    mkdir -p src/{main,test}/scala
    touch build.sbt && vi build.sbt # fill in the basics (name, organization, version)
    touch README.md && vi README.md
    sbt
    

    ... start coding

提交回复
热议问题