Skip to content

Commit

Permalink
Added dependency on XMLWriter
Browse files Browse the repository at this point in the history
  • Loading branch information
JanBliznicenko committed May 7, 2024
1 parent 72696e3 commit d7e84ec
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
18 changes: 13 additions & 5 deletions repository/BaselineOfOPXMI/BaselineOfOPXMI.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
Baseline for https://github.com/OpenPonk/xmi
"
Class {
#name : #BaselineOfOPXMI,
#superclass : #BaselineOf,
#category : #BaselineOfOPXMI
#name : 'BaselineOfOPXMI',
#superclass : 'BaselineOf',
#category : 'BaselineOfOPXMI',
#package : 'BaselineOfOPXMI'
}

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

<baseline>
Expand All @@ -16,7 +17,14 @@ BaselineOfOPXMI >> baseline: spec [
baseline: 'XMLDOMVisitor'
with: [
spec repository: 'github://OpenPonk/xml-dom-visitor/repository' ].
spec package: 'OP-XMI' with: [ spec requires: #( 'XMLDOMVisitor' ) ].
spec baseline: 'XMLWriter' with: [
spec
loads: #( 'Core' );
repository:
'github://pharo-contributions/XML-XMLWriter:XML-XMLWriter:v3.1.1/src' ].
spec
package: 'OP-XMI'
with: [ spec requires: #( 'XMLDOMVisitor' 'XMLWriter' ) ].
spec
package: 'OP-XMI-GTExtensions'
with: [ spec requires: #( 'OP-XMI' ) ].
Expand Down
2 changes: 1 addition & 1 deletion repository/BaselineOfOPXMI/package.st
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Package { #name : #BaselineOfOPXMI }
Package { #name : 'BaselineOfOPXMI' }

0 comments on commit d7e84ec

Please sign in to comment.