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 Mar 1, 2024
1 parent 773d97c commit 4fd508b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions source/BaselineOfHyperspace/BaselineOfHyperspace.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,19 @@ 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-Extensions'
with: [ spec requires: 'Hyperspace-Model' ];
Expand All @@ -64,7 +68,7 @@ BaselineOfHyperspace >> setUpPackages: spec [
package: 'Hyperspace-Model-Tests' with: [
spec requires:
#( 'Hyperspace-Model' 'Hyperspace-Extensions'
'Hyperspace-Pharo-Extensions' 'Dependent-SUnit-Extensions' ) ];
'Hyperspace-Pharo-Extensions' 'Dependent-SUnit-Extensions' 'Bell-SUnit') ];
group: 'Tests' with: 'Hyperspace-Model-Tests'.

spec
Expand Down

0 comments on commit 4fd508b

Please sign in to comment.