-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBaselineOfToploSerialization.class.st
More file actions
45 lines (37 loc) · 1.16 KB
/
BaselineOfToploSerialization.class.st
File metadata and controls
45 lines (37 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Class {
#name : #BaselineOfToploSerialization,
#superclass : #BaselineOf,
#category : #BaselineOfToploSerialization
}
{ #category : #baselines }
BaselineOfToploSerialization >> baseline: spec [
<baseline>
spec for: #common do: [ "dependencies"
self dependency: spec.
"project packages"
self dependency: spec.
"project packages"
spec package: 'Toplo-Serialization-STON'.
spec package: 'Toplo-Serialization-Stash'.
spec package: 'Toplo-Serialization' with: [
spec requires:
#( 'Toplo' 'BlocSerialization' 'Toplo-Serialization-STON'
'Toplo-Serialization-Stash' ) ].
spec
package: 'Toplo-Serialization-Tests'
with: [ spec requires: #( 'Toplo-Serialization' ) ] ]
]
{ #category : #baselines }
BaselineOfToploSerialization >> dependency: spec [
spec
baseline: #BlocSerialization
with: [
spec repository: 'github://OpenSmock/Bloc-Serialization:main/src' ].
"Graphic librairies: this section should be removed when librairies will be integrated in Pharo"
spec
baseline: 'Album'
with: [ spec repository: 'github://ThalesGroup/Album:dev' ].
spec
baseline: 'Toplo'
with: [ spec repository: 'github://ThalesGroup/Toplo:dev' ]
]