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 a818b8b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
17 changes: 12 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,13 @@ 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:v3.1.x' ].
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 a818b8b

Please sign in to comment.