Skip to content

Commit

Permalink
Removed direct XMLParser and XMLWriter dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
JanBliznicenko committed Nov 2, 2023
1 parent 69f58b7 commit 72696e3
Showing 1 changed file with 11 additions and 22 deletions.
33 changes: 11 additions & 22 deletions repository/BaselineOfOPXMI/BaselineOfOPXMI.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -9,27 +9,16 @@ Class {

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

<baseline>
spec
for: #common
do: [ spec
baseline: 'XMLParser'
with: [ spec
repository: 'github://pharo-contributions/XML-XMLParser:3.5.x/src';
loads: #(Core) ].
spec
baseline: 'XMLWriter'
with: [ spec
repository: 'github://pharo-contributions/XML-XMLWriter:2.9.x/src';
loads: #(Core) ].
spec
baseline: 'XMLDOMVisitor'
with: [ spec repository: 'github://OpenPonk/xml-dom-visitor/repository' ].
spec
package: 'OP-XMI'
with: [ spec requires: #('XMLParser' 'XMLWriter' 'XMLDOMVisitor') ].
spec
package: 'OP-XMI-GTExtensions'
with: [ spec requires: #('OP-XMI') ].
spec group: 'default' with: #('OP-XMI' 'OP-XMI-GTExtensions') ]
spec for: #common do: [
spec
baseline: 'XMLDOMVisitor'
with: [
spec repository: 'github://OpenPonk/xml-dom-visitor/repository' ].
spec package: 'OP-XMI' with: [ spec requires: #( 'XMLDOMVisitor' ) ].
spec
package: 'OP-XMI-GTExtensions'
with: [ spec requires: #( 'OP-XMI' ) ].
spec group: 'default' with: #( 'OP-XMI' 'OP-XMI-GTExtensions' ) ]
]

0 comments on commit 72696e3

Please sign in to comment.