How to reference external sbt project from another sbt project?

前端 未结 3 916
温柔的废话
温柔的废话 2020-12-02 13:04

I have the following setup of a Scala application and a common core library: root

 -> /ApplicationA
   -> /project
     -> /build.sbt
 -> /CoreLi         


        
3条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-02 13:47

    With sbt 0.12.1 it seems possible to get a simple reference to a project :

    I used ProjectRef instead of RootProject

    http://www.scala-sbt.org/0.12.1/api/sbt/ProjectRef.html

    ProjectRef(file("../util-library"), "util-library")
    

    sbt-eclipse also works.

提交回复
热议问题