如何使用scala sbt构建多个jar文件

时间:2011-06-15 21:44:26

标签: scala sbt

在我的项目中,我有以下结构:

  

的src /

     

插件/

     
    

\ __ mpc

         

| __ oper

  

我将src中的所有scala文件编译成一个jar(主程序),然后插件中的每个子目录都包含scala文件,这些文件应该构建一个由主程序加载的插件jar(所以一个jar用于插件/ mpc和另一个用于插件/操作。)

在root中我有一个build.sbt:

  

name:=“mrto​​ms”

     

组织:=“chilon”

     

版本:=“0.1”

     

libraryDependencies ++ = Seq(“commons-httpclient”%“commons-httpclient”%“3.1”)

     

crossPaths:= false

     

scalaHome:= Some(file(“/ usr / share / scala”))

     

target:= file(“project / target”)

     

Compile中的scalaSource<< = baseDirectory(_ /“src”)

     

mainClass:= Some(“org.chilon.mrtoms.MrToms”)

从src中的文件构建我的主jar文件就好了..如何在每个插件目录中为sources文件添加jar?

1 个答案:

答案 0 :(得分:6)

似乎您需要完整配置(目前您使用的是基本配置):

https://github.com/harrah/xsbt/wiki/Full-Configuration

在您的情况下,root项目是您的主要内容。然后每个插件都应该有自己的项目,根项目聚合。完整配置可以是这样的:

import sbt._

object MyBuild extends Build {
    lazy val root = Project("root", file(".")) aggregate (mpc, oper) 
    lazy val mpc  = Project("mpc", file("plugins/mpc")) dependsOn(pluginApi)
    lazy val oper = Project("sub2", file("plugins/oper")) dependsOn(pluginApi)
    lazy val pluginApi = Project("pluginApi", file("plugins/api"))
}