Skip to content

Commit 0d44704

Browse files
Merge pull request #35 from OpenSmock/34-update-bloc-repository-into-the-baseline
Update Bloc repository (and add Alexandrie) in the baseline
2 parents c5e113b + 08f1bec commit 0d44704

3 files changed

Lines changed: 15 additions & 5 deletions

File tree

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 OpenSmock
3+
Copyright (c) 2023-2026 OpenSmock
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,17 @@ Serialization or Materialization process return some exceptions in case of probl
7676
7777
## Serialization backends
7878

79-
Actually `STON` is the only backend used for serialization. The project architecture allow to add anothers serialization backends if needed.
79+
`Stash` and `STON` can be used as serialization backends.
80+
81+
The project architecture is flexible enough to accommodate the addition of more serialization backends if required.
8082

8183
## Dependencies
8284

83-
- [Bloc](https://github.com/pharo-graphics/Bloc)
85+
- [Stash](https://github.com/OpenSmock/stash)
8486
- [STON](https://github.com/svenvc/ston)
87+
- [Alexandrie](https://github.com/pharo-graphics/Alexandrie)
88+
- [Bloc](https://github.com/pharo-graphics/Bloc)
8589

8690
## License
8791

88-
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
92+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

src/BaselineOfBlocSerialization/BaselineOfBlocSerialization.class.st

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ BaselineOfBlocSerialization >> baseline: spec [
2525
{ #category : #accessing }
2626
BaselineOfBlocSerialization >> dependency: spec [
2727

28+
"Serialization backends"
2829
spec
2930
baseline: 'Ston'
3031
with: [ spec repository: 'github://svenvc/ston/repository' ].
@@ -33,7 +34,12 @@ BaselineOfBlocSerialization >> dependency: spec [
3334
baseline: 'StashSerialization'
3435
with: [ spec repository: 'github://OpenSmock/Stash/src' ].
3536

37+
"Graphic librairies: this section should be removed when librairies will be integrated in Pharo"
38+
spec
39+
baseline: 'Alexandrie'
40+
with: [ spec repository: 'github://ThalesGroup/Alexandrie:dev' ].
41+
3642
spec
3743
baseline: 'Bloc'
38-
with: [ spec repository: 'github://OpenSmock/Bloc:dev/src' ].
44+
with: [ spec repository: 'github://ThalesGroup/Bloc:dev' ].
3945
]

0 commit comments

Comments
 (0)