aboutsummaryrefslogblamecommitdiff
path: root/stage2/ports.scala
blob: 6aef98e091b9d0b3c099ea0351b57c141bb23ecc (plain) (tree)
1
2
3
4
5
6
7
8
9
10
           
                                                       
                                                        



                                                         


                                       
                                        
                                     
 
package cbt
class ports( context: Context, scalaVersion: String ) {
  private def dep( name: String ) = DirectoryDependency(
    context.copy(
      scalaVersion     = Some( scalaVersion ),
      workingDirectory = context.cbtHome / "ports" / name
    ),
    None
  )
  def mima = dep( "migration-manager" )
  def scalariform = dep( "scalariform" )
  def scalaXRay = dep( "scala-xray" )
}