From 7574fa15b1a2b65bb7f4e329bad1f669287ede7e Mon Sep 17 00:00:00 2001 From: Sven Van Caekenberghe Date: Mon, 8 Oct 2018 17:18:01 +0200 Subject: [PATCH] change BaselineOfP3 to depend on the github versions of NeoJSON and ZTimestamp --- BaselineOfP3/BaselineOfP3.class.st | 32 ++++++++++++++---------------- 1 file changed, 15 insertions(+), 17 deletions(-) diff --git a/BaselineOfP3/BaselineOfP3.class.st b/BaselineOfP3/BaselineOfP3.class.st index 532253d..0343757 100644 --- a/BaselineOfP3/BaselineOfP3.class.st +++ b/BaselineOfP3/BaselineOfP3.class.st @@ -44,21 +44,19 @@ Class { { #category : #baseline } BaselineOfP3 >> baselineOf: spec [ - spec for: #common do: [ - spec configuration: 'NeoJSON' with: [ - spec - versionString: #stable; - repository: 'http://mc.stfx.eu/Neo' ]. - spec configuration: 'ZTimestamp' with: [ - spec - versionString: #stable; - repository: 'http://mc.stfx.eu/Neo' ]. - spec configuration: 'Glorp' with: [ - spec - versionString: #stable; - repository: 'http://www.smalltalkhub.com/mc/DBXTalk/Configurations/main' ]. - spec package: 'P3' with: [ spec requires: #('NeoJSON' 'ZTimestamp') ]. - spec package: 'P3-Glorp' with: [ spec requires: #('P3' 'Glorp') ]. - spec group: 'default' with: #('P3'). - spec group: 'glorp' with: #('P3-Glorp') ] + spec + for: #common + do: [ + spec baseline: 'NeoJSON' with: [ spec repository: 'github://svenvc/NeoJSON:master/repository' ]. + spec baseline: 'ZTimestamp' with: [ spec repository: 'github://svenvc/ztimestamp:master/repository' ]. + spec + configuration: 'Glorp' + with: [ + spec + versionString: #stable; + repository: 'http://www.smalltalkhub.com/mc/DBXTalk/Configurations/main' ]. + spec package: 'P3' with: [ spec requires: #('NeoJSON' 'ZTimestamp') ]. + spec package: 'P3-Glorp' with: [ spec requires: #('P3' 'Glorp') ]. + spec group: 'default' with: #('P3'). + spec group: 'glorp' with: #('P3-Glorp') ] ]