Skip to content

Commit

Permalink
removed loading petit parser in baseline
Browse files Browse the repository at this point in the history
  • Loading branch information
JanBliznicenko committed Oct 5, 2021
1 parent 3ab8ba0 commit 4da2382
Showing 1 changed file with 9 additions and 20 deletions.
29 changes: 9 additions & 20 deletions repository/BaselineOfClassEditor/BaselineOfClassEditor.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,20 @@ BaselineOfClassEditor >> baseline: spec [
spec
repository: 'github://moosetechnology/Moose:f2b6052/src';
loads: #( Merlin ) ].
spec
baseline: 'UMLMetamodel'
with: [
spec repository: 'github://openponk/uml-metamodel:v3.0.x/repository' ].
spec baseline: 'UMLMetamodel' with: [
spec repository:
'github://openponk/uml-metamodel:v3.0.x/repository' ].
spec
baseline: 'OPUMLXMI'
with: [ spec repository: 'github://openponk/uml-xmi:v3.0.x/repository' ].
with: [
spec repository: 'github://openponk/uml-xmi:v3.0.x/repository' ].
spec baseline: 'UMLBootstrapGenerator' with: [
spec repository:
'github://openponk/uml-bootstrap-generator:v3.0.x/repository' ].
spec baseline: 'OpenPonk' with: [
spec
repository: 'github://openponk/openponk:v3.0.x/repository';
postLoadDoIt: #loadPetitParser ].
spec
baseline: 'OpenPonk'
with: [
spec repository: 'github://openponk/openponk:v3.0.x/repository' ].
spec baseline: 'UMLShapes' with: [
spec
repository: 'github://openponk/uml-shapes:v3.0.x/repository';
Expand Down Expand Up @@ -66,17 +66,6 @@ BaselineOfClassEditor >> loadOntoUML [
load: 'plugin'
]

{ #category : #baselines }
BaselineOfClassEditor >> loadPetitParser [
"this is solved separatedly by direct loading code because PetitParser does not specify Roassal2 version, which causes conflicts and this is probably only way to use onConflict:"

Metacello new
baseline: 'PetitParser';
repository: 'github://moosetechnology/PetitParser:v2.x.x/src';
onConflict: [ :err | err useLoaded ];
load
]

{ #category : #plugins }
BaselineOfClassEditor >> loadPlugins [

Expand Down

0 comments on commit 4da2382

Please sign in to comment.