Skip to content

Commit

Permalink
use master branches of OP dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
JanBliznicenko committed May 14, 2023
1 parent 56d4d51 commit 6dcf086
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions repository/BaselineOfFsmEditor/BaselineOfFsmEditor.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -6,31 +6,31 @@ Class {

{ #category : #accessing }
BaselineOfFsmEditor >> baseline: spec [

<baseline>
spec
for: #common
do: [ spec
baseline: 'Mustache'
with: [ spec repository: 'github://noha/mustache:v1.1' ].
spec
baseline: 'XMLParser'
with: [ spec
repository: 'github://pharo-contributions/XML-XMLParser:3.5.x/src';
loads: #(Core) ].
spec
baseline: 'XPath'
with: [ spec
repository: 'github://pharo-contributions/XML-XPath:3450f91/src';
loads: #(Core) ].
spec
baseline: 'OpenPonk'
with: [ spec repository: 'github://openponk/openponk:dev-roassal3' ].
spec for: #common do: [
spec
baseline: 'Mustache'
with: [ spec repository: 'github://noha/mustache:v1.1' ].
spec baseline: 'XMLParser' with: [
spec
baseline: 'OpenPonkModel'
with: [ spec repository: 'github://OpenPonk/openponk-model/repository' ].
repository: 'github://pharo-contributions/XML-XMLParser:3.5.x/src';
loads: #( Core ) ].
spec baseline: 'XPath' with: [
spec
package: 'OpenPonk-FSM'
with: [ spec requires: #('OpenPonkModel' 'Mustache' 'XMLParser' 'XPath') ].
spec group: 'plugin' with: #('OpenPonk-FSM').
spec group: 'default' with: #('OpenPonk' 'plugin') ]
repository: 'github://pharo-contributions/XML-XPath:3450f91/src';
loads: #( Core ) ].
spec
baseline: 'OpenPonk'
with: [ spec repository: 'github://openponk/openponk' ].
spec
baseline: 'OpenPonkModel'
with: [ spec repository: 'github://OpenPonk/openponk-model' ].
spec
package: 'OpenPonk-FSM'
with: [
spec requires: #( 'OpenPonkModel' 'Mustache' 'XMLParser'
'XPath' ) ].
spec group: 'plugin' with: #( 'OpenPonk-FSM' ).
spec group: 'default' with: #( 'OpenPonk' 'plugin' ) ]
]

0 comments on commit 6dcf086

Please sign in to comment.