Dependency URL update

This commit is contained in:
Daniel Ziltener 2023-11-12 18:10:04 +01:00
parent 3fe7d16a0d
commit e6ebde011e
1 changed files with 10 additions and 8 deletions

View File

@ -6,16 +6,18 @@ Class {
{ #category : #baselines } { #category : #baselines }
BaselineOfWebDriver >> baseline: spec [ BaselineOfWebDriver >> baseline: spec [
<baseline> <baseline>
spec spec
for: #common for: #common do: [ spec package: 'WebDriver' ];
do: [ baseline: 'Clouseau'
spec with: [
package: 'WebDriver' spec repository: 'https://gitea.lyrion.ch/Pharo/Clouseau.git' ];
]; baseline: 'NeoJSON'
baseline: 'Clouseau' with: [ spec repository: 'https://gitea.lyrion.ch/zilti/clouseau.git' ]; with: [ spec repository: 'github://svenvc/NeoJSON/repository' ];
baseline: 'NeoJSON' with: [ spec repository: 'github://svenvc/NeoJSON/repository' ]; baseline: 'OSSubprocess' with: [
baseline: 'OSSubprocess' with: [ spec repository: 'github://pharo-contributions/OSSubprocess:master/repository' ] spec repository:
'github://pharo-contributions/OSSubprocess:master/repository' ]
] ]
{ #category : #accessing } { #category : #accessing }