From f4c79cb1ef1c89a4104e2b3858a6897a8a21fc84 Mon Sep 17 00:00:00 2001 From: Offray Luna Date: Sat, 25 Jul 2020 13:14:37 -0500 Subject: [PATCH] TaskIt as prerrequisite. --- repository/BaselineOfBrea/BaselineOfBrea.class.st | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/repository/BaselineOfBrea/BaselineOfBrea.class.st b/repository/BaselineOfBrea/BaselineOfBrea.class.st index dd399df..99e74bb 100644 --- a/repository/BaselineOfBrea/BaselineOfBrea.class.st +++ b/repository/BaselineOfBrea/BaselineOfBrea.class.st @@ -17,9 +17,10 @@ BaselineOfBrea >> baseline: spec [ do: [ "Dependencies" spec - baseline: 'NeoJSON' with: [ spec repository: 'github://svenvc/NeoJSON/repository' ]. + baseline: 'NeoJSON' with: [ spec repository: 'github://svenvc/NeoJSON/repository' ]; + baseline: 'TaskIt' with: [ spec repository: 'github://pharo-contributions/taskit' ]. "Packages" - spec package: 'Brea' with: [ spec requires: #('NeoJSON') ]. + spec package: 'Brea' with: [ spec requires: #('NeoJSON' 'TaskIt') ]. ] ]