aboutsummaryrefslogtreecommitdiff
path: root/stage2/ports.scala
diff options
context:
space:
mode:
Diffstat (limited to 'stage2/ports.scala')
-rw-r--r--stage2/ports.scala8
1 files changed, 8 insertions, 0 deletions
diff --git a/stage2/ports.scala b/stage2/ports.scala
new file mode 100644
index 0000000..51ae4f0
--- /dev/null
+++ b/stage2/ports.scala
@@ -0,0 +1,8 @@
+package cbt
+class ports( context: Context ) {
+ private def dep( name: String ) = DirectoryDependency(
+ context.copy( workingDirectory = context.cbtHome / "ports" / name ),
+ None
+ )
+ def mima = dep( "migration-manager" )
+}