Skip to content

Commit

Permalink
created circular dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
JanBliznicenko committed Oct 27, 2023
1 parent b600cbc commit a51bbae
Showing 1 changed file with 24 additions and 9 deletions.
33 changes: 24 additions & 9 deletions repository/BaselineOfClassEditor/BaselineOfClassEditor.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@ BaselineOfClassEditor >> baseline: spec [
spec requires:
#( 'UMLMetamodel' 'OPUMLXMI' 'UMLBootstrapGenerator'
'UMLProfiles' ) ].
self plugins: spec.
spec
package: 'OPClassEditor-Plugins'
with: [ spec postLoadDoIt: #loadPlugins ].
with: [ spec requires: #('OntoUMLVerificationFramework' OntoUMLPatterns OpenPonkGit OntoUMLTransformationFramework) ].
spec group: 'plugin' with: #( 'OpenPonk-ClassEditor' ).
spec
group: 'complete-plugin'
Expand All @@ -48,14 +49,6 @@ BaselineOfClassEditor >> baseline: spec [
spec group: 'default' with: #( OpenPonk plugin ) ]
]

{ #category : #baselines }
BaselineOfClassEditor >> loadOntoUML [
Metacello new
baseline: 'OntoUMLProfile';
repository: 'github://openponk/ontouml-profile';
load: 'plugin'
]

{ #category : #baselines }
BaselineOfClassEditor >> loadOntoUMLToUMLTransformation [
Metacello new
Expand Down Expand Up @@ -100,3 +93,25 @@ BaselineOfClassEditor >> loadVerificationFramework [
repository: 'github://openponk/ontouml-verifications';
load: 'plugin'
]

{ #category : #baselines }
BaselineOfClassEditor >> plugins: spec [

spec baseline: 'OntoUMLVerificationFramework' with: [
spec
repository: 'github://openponk/ontouml-verifications';
loads: 'plugin' ].
spec baseline: 'OntoUMLTransformationFramework' with: [
spec
repository:
'github://openponk/openponk-ontouml-to-uml-transformation';
loads: 'plugin' ].
spec baseline: 'OpenPonkGit' with: [
spec
repository: 'github://openponk/openponk-git';
loads: 'plugin' ].
spec baseline: 'OntoUMLPatterns' with: [
spec
repository: 'github://openponk/ontouml-patterns';
loads: 'plugin' ]
]

0 comments on commit a51bbae

Please sign in to comment.