Skip to content

Commit

Permalink
Merge pull request #19 from ClotildeToullec/main
Browse files Browse the repository at this point in the history
Fix baseline to be able to use 'MotionMoose' group
  • Loading branch information
alesshosry authored Jul 10, 2024
2 parents 6f99a8e + 11b0e03 commit b211252
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions BaselineOfMoTion/BaselineOfMoTion.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ Class {
BaselineOfMoTion >> baseline: spec [

<baseline>
spec for: #common do: [
spec for: #common do: [
spec
package: #MoTion;
package: #'MoTion-Tests' with: [ spec requires: #( 'MoTion' ) ].
spec for: #MooseX do: [ spec package: 'MoTion-Moose' ].
spec group: 'MoTionMoose' with: #( 'MoTion' 'MoTion-Tests' 'MoTion-Moose').
spec group: 'default' with: #( 'MoTion' 'MoTion-Tests' ) ]
package: #'MoTion-Tests' with: [ spec requires: #( 'MoTion' ) ];
package: #'MoTion-Moose' with: [ spec requires: #( 'MoTion' ) ].

spec group: 'default' with: #( 'MoTion' 'MoTion-Tests' ).
spec group: 'MoTionMoose' with: #( 'default' 'MoTion-Moose' ) ]
]

0 comments on commit b211252

Please sign in to comment.