Skip to content

Commit

Permalink
Depend on XMLDOMVisitor
Browse files Browse the repository at this point in the history
  • Loading branch information
JanBliznicenko committed Nov 12, 2023
1 parent b0d3fe7 commit 9f5d581
Showing 1 changed file with 27 additions and 20 deletions.
47 changes: 27 additions & 20 deletions repository/BaselineOfBPMN/BaselineOfBPMN.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,32 @@ Class {

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

<baseline>
spec
for: #common
do: [ spec
baseline: 'OpenPonk'
with: [ spec repository: 'github://openponk/openponk' ].
spec
baseline: 'OpenPonkModel'
with: [ spec repository: 'github://OpenPonk/openponk-model/repository' ].
spec
package: 'OpenPonk-BPMN'
with: [ spec requires: #('OpenPonk' 'OpenPonkModel') ].
spec
package: 'OpenPonk-BPMN-XML'
with: [ spec requires: #('OpenPonk-BPMN') ].
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') ]
spec for: #common do: [
spec
baseline: 'OpenPonk'
with: [ spec repository: 'github://openponk/openponk' ].
spec
baseline: 'OpenPonkModel'
with: [
spec repository: 'github://OpenPonk/openponk-model/repository' ].
spec
baseline: 'XMLDOMVisitor'
with: [
spec repository: 'github://OpenPonk/xml-dom-visitor/repository' ].
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 9f5d581

Please sign in to comment.