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 1174ff8 commit c46c880
Showing 1 changed file with 27 additions and 22 deletions.
49 changes: 27 additions & 22 deletions repository/BaselineOfBPMN/BaselineOfBPMN.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,32 @@ Class {

{ #category : 'baselines' }
BaselineOfBPMN >> baseline: spec [

<baseline>
spec
for: #common
do: [ spec
baseline: 'OpenPonk'
with: [ spec repository: 'github://openponk/openponk:v3.0.x/repository' ].
spec
baseline: 'OpenPonkModel'
with: [ spec repository: 'github://OpenPonk/openponk-model:v2.1.x/repository' ].
spec
baseline: 'XMLWriter'
with: [ spec
repository: 'github://pharo-contributions/XML-XMLWriter:2.9.x/src';
loads: #(Core) ].
spec
package: 'OpenPonk-BPMN'
with: [ spec requires: #('OpenPonk' 'OpenPonkModel') ].
spec
package: 'OpenPonk-BPMN-XML'
with: [ spec requires: #('OpenPonk-BPMN' 'XMLWriter') ].
spec
group: 'plugin' with: #('OpenPonk-BPMN' 'OpenPonk-BPMN-XML');
group: 'default' with: #('OpenPonk' 'plugin') ]
spec for: #common do: [
spec
baseline: 'OpenPonk'
with: [ spec repository: 'github://openponk/openponk:v4.0.x' ].
spec
baseline: 'OpenPonkModel'
with: [
spec repository: 'github://OpenPonk/openponk-model:v4.0.x' ].
spec
baseline: 'XMLDOMVisitor'
with: [
spec repository: 'github://OpenPonk/xml-dom-visitor:v4.0.x' ].
spec
package: 'OpenPonk-BPMN'
with: [ spec requires: #( 'OpenPonk' 'OpenPonkModel' ) ].
spec
package: 'OpenPonk-BPMN-XML'
with: [ spec requires: #( 'OpenPonk-BPMN' 'XMLDOMVisitor' ) ].
spec
package: 'OpenPonk-BPMN-Validation'
with: [ spec requires: #( 'OpenPonk-BPMN' ) ].
spec
group: 'plugin'
with:
#( 'OpenPonk-BPMN' 'OpenPonk-BPMN-XML' 'OpenPonk-BPMN-Validation' );
group: 'default' with: #( 'OpenPonk' 'plugin' ) ]
]

0 comments on commit c46c880

Please sign in to comment.