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



                                                         



                                       
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" )
}