Skip to content

Commit

Permalink
Add Bell as dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
jvanecek committed Feb 29, 2024
1 parent 47e101b commit e608cdd
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions source/BaselineOfHyperspace/BaselineOfHyperspace.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,22 @@ BaselineOfHyperspace >> setUpDependencies: spec [
project: 'Buoy-Tools' copyFrom: 'Buoy' with: [ spec loads: 'Tools' ].
spec
baseline: 'ZincHTTPComponents' with: [ spec repository: 'github://svenvc/zinc' ];
project: 'Zinc-Core' copyFrom: 'ZincHTTPComponents' with: [ spec loads: 'Core' ]
project: 'Zinc-Core' copyFrom: 'ZincHTTPComponents' with: [ spec loads: 'Core' ].

spec
baseline: 'Bell' with: [ spec repository: 'github://ba-st/Bell:v1' ];
project: 'Bell-Deployment' copyFrom: 'Bell' with: [ spec loads: 'Deployment' ];
project: 'Bell-SUnit' copyFrom: 'Bell' with: [ spec loads: 'Dependent-SUnit-Extensions' ]
]

{ #category : #initialization }
BaselineOfHyperspace >> setUpPackages: spec [

spec
package: 'Hyperspace-Model' with: [ spec requires: #('Buoy-Deployment' 'Zinc-Core')];
package: 'Hyperspace-Model' with: [ spec requires: #('Buoy-Deployment' 'Zinc-Core' 'Bell-Deployment')];
group: 'Deployment' with: 'Hyperspace-Model';
package: 'Hyperspace-Model-Tests'
with: [ spec requires: #( 'Hyperspace-Model' 'Dependent-SUnit-Extensions' ) ];
with: [ spec requires: #( 'Hyperspace-Model' 'Dependent-SUnit-Extensions' 'Bell-SUnit' ) ];
group: 'Tests' with: 'Hyperspace-Model-Tests'.

spec
Expand Down

0 comments on commit e608cdd

Please sign in to comment.