Skip to content

Commit

Permalink
Tools group fixes in Pharo baseline
Browse files Browse the repository at this point in the history
  • Loading branch information
ytsejam78 committed Nov 17, 2023
1 parent 454b249 commit e787645
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions source/BaselineOfKepler/BaselineOfKepler.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ Class {
BaselineOfKepler >> baseline: spec [

<baseline>
spec for: #pharo do: [
self
setUpDependencies: spec;
setUpPackages: spec.
spec
group: 'Deployment' with: #( 'Core' 'Extended' );
group: 'CI' with: 'Tests';
group: 'Tools' with: #( 'Buoy-Tools' 'Deployment' );
group: 'Development' with: #( 'Tests' 'Tools' ).
spec postLoadDoIt: #postLoadInitialization ].
spec
for: #pharo
do: [ self
setUpDependencies: spec;
setUpPackages: spec.
spec
group: 'Deployment' with: #('Core' 'Extended');
group: 'CI' with: 'Tests';
group: 'Tools' with: 'Buoy-Tools';
group: 'Development' with: #('Tests' 'Tools').
spec postLoadDoIt: #postLoadInitialization
].
spec for: #'pharo10.x' do: [ self setUpPharo10Packages: spec ]
for: #( 'pharo10.x' 'pharo11.x' )
do: [ self setUpPharo10Packages: spec ]
]

{ #category : 'post load' }
Expand Down

0 comments on commit e787645

Please sign in to comment.