Add baseline

This commit is contained in:
SantiagoBragagnolo 2020-05-01 16:53:18 +02:00
parent c7766f92b9
commit 7601b51d02
2 changed files with 34 additions and 0 deletions

View File

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

View File

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