aboutsummaryrefslogtreecommitdiff
path: root/ports/migration-manager/build/build.scala
blob: edae75fc7f361ec9c33f94c521edf1afb41f07d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package migration_manager_build
import cbt._
class Build(val context: Context) extends BaseBuild{
  override def dependencies =
    Resolver( mavenCentral ).bind(
      MavenDependency( "org.scala-lang", "scala-compiler", scalaVersion )
    )
  def mima = GitDependency.checkout(
    "git@github.com:typesafehub/migration-manager.git", "92cbce52b4bf04ca1c338f34818ebfb9f0ebc285"
  )
  override def generatedSources = Seq( mima / "core" )
}