Skip to content

Commit

Permalink
Updated baseline
Browse files Browse the repository at this point in the history
  • Loading branch information
JanBliznicenko committed Sep 30, 2024
1 parent b8e1616 commit 0df52ef
Showing 1 changed file with 18 additions and 19 deletions.
37 changes: 18 additions & 19 deletions repository/BaselineOfPetriNets/BaselineOfPetriNets.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,24 @@ Class {

{ #category : 'accessing' }
BaselineOfPetriNets >> baseline: spec [

<baseline>
spec
for: #common
do: [ spec
baseline: 'OpenPonk'
with: [ spec repository: 'github://openponk/openponk:v3.0.x/repository' ].
spec
baseline: 'OpenPonkSimulation'
with: [ spec
repository: 'github://JanBliznicenko/openponk-simulation:v3.0.x/repository';
loads: 'plugin' ].
spec
package: 'OpenPonk-PetriNets'
with: [ spec requires: #('OpenPonkSimulation') ].
spec
package: 'OpenPonk-BooleanColoredPetriNets'
with: [ spec requires: #('OpenPonk-PetriNets') ].
spec for: #common do: [
spec
baseline: 'OpenPonk'
with: [ spec repository: 'github://openponk/openponk:v4.0.x' ].
spec baseline: 'OpenPonkSimulation' with: [
spec
group: 'plugin' with: #('OpenPonk-PetriNets');
group: 'default' with: #('OpenPonk' 'plugin');
group: 'bcpn' with: #('OpenPonk-BooleanColoredPetriNets') ]
repository: 'github://JanBliznicenko/openponk-simulation:v4.0.x';
loads: 'plugin' ].
spec
package: 'OpenPonk-PetriNets'
with: [ spec requires: #( 'OpenPonkSimulation' ) ].
spec
package: 'OpenPonk-BooleanColoredPetriNets'
with: [ spec requires: #( 'OpenPonk-PetriNets' ) ].
spec
group: 'plugin' with: #( 'OpenPonk-PetriNets' );
group: 'default' with: #( 'OpenPonk' 'plugin' );
group: 'bcpn' with: #( 'OpenPonk-BooleanColoredPetriNets' ) ]
]

0 comments on commit 0df52ef

Please sign in to comment.