This commit is contained in:
sbragagnolo 2020-05-10 23:27:29 +02:00
parent 9cf21cb38b
commit 5fc5eeb977
2 changed files with 35 additions and 35 deletions

View File

@ -1,34 +1,34 @@
Class { Class {
#name : #BaselineOfGrafoscopio, #name : #BaselineOfGrafoscopio,
#superclass : #BaselineOf, #superclass : #BaselineOf,
#category : #BaselineOfGrafoscopio #category : #BaselineOfGrafoscopio
} }
{ #category : #baselines } { #category : #baselines }
BaselineOfGrafoscopio >> baseline: spec [ BaselineOfGrafoscopio >> baseline: spec [
<baseline> <baseline>
spec spec
baseline: #Roassal3 baseline: #Roassal3
with: [ spec repository: 'github://ObjectProfile/Roassal3/src' ]; with: [ spec repository: 'github://ObjectProfile/Roassal3/src' ];
project: 'WebBrowser' project: 'WebBrowser'
with: [ spec with: [ spec
className: #ConfigurationOfWebBrowser; className: #ConfigurationOfWebBrowser;
versionString: #stable; versionString: #stable;
repository: 'http://smalltalkhub.com/TorstenBergmann/WebBrowser' ]; repository: 'http://smalltalkhub.com/TorstenBergmann/WebBrowser' ];
baseline: #TaskItShell baseline: #TaskItShell
with: [ spec repository: 'github://sbragagnolo/taskit:master/' ]; with: [ spec repository: 'github://sbragagnolo/taskit-shell/src' ];
baseline: #Pillar baseline: #Pillar
with: [ spec repository: 'github://pillar-markup/pillar/' ]; with: [ spec repository: 'github://pillar-markup/pillar/' ];
project: 'Fossil' project: 'Fossil'
with: [ spec with: [ spec
className: #ConfigurationOfFossil; className: #ConfigurationOfFossil;
versionString: #stable; versionString: #stable;
repository: 'http://smalltalkhub.com/mc/Offray/Fossil/main' ]. repository: 'http://smalltalkhub.com/mc/Offray/Fossil/main' ].
spec package: #'Grafoscopio-Utils'. spec package: #'Grafoscopio-Utils'.
spec spec
package: #Grafoscopio package: #Grafoscopio
with: [ spec requires: #('TaskItShell' 'Fossil' 'Pillar') ]. with: [ spec requires: #('TaskItShell' 'Fossil' 'Pillar') ].
spec spec
group: 'Core' with: #('Grafoscopio-Utils' 'Roassal3' 'Grafoscopio'); group: 'Core' with: #('Grafoscopio-Utils' 'Roassal3' 'Grafoscopio');
group: 'Extended' with: #('Core') group: 'Extended' with: #('Core')
] ]

View File

@ -1 +1 @@
Package { #name : #BaselineOfGrafoscopio } Package { #name : #BaselineOfGrafoscopio }