aboutsummaryrefslogblamecommitdiff
path: root/plugins/sbt_layout/SbtLayout.scala
blob: 3e8706dbbf7107dd46aa937d148fc15538dec662 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
           
                                                                                           







                                                                                   
package cbt
// TODO: move this into stage2 to avoid having to call zinc separately for this as a plugin
trait SbtLayoutTest extends BaseBuild{
  override def sources = Seq(projectDirectory ++ "/src/test/scala")
  override def compileTarget = super.compileTarget.getParentFile ++ "/test-classes"
}

trait SbtLayoutMain extends BaseBuild{
  override def sources = Seq( projectDirectory ++ "/src/main/scala" )
}