Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 OpenSmock
Copyright (c) 2023-2026 OpenSmock

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,17 @@ Serialization or Materialization process return some exceptions in case of probl

## Serialization backends

Actually `STON` is the only backend used for serialization. The project architecture allow to add anothers serialization backends if needed.
`Stash` and `STON` can be used as serialization backends.

The project architecture is flexible enough to accommodate the addition of more serialization backends if required.

## Dependencies

- [Bloc](https://github.com/pharo-graphics/Bloc)
- [Stash](https://github.com/OpenSmock/stash)
- [STON](https://github.com/svenvc/ston)
- [Alexandrie](https://github.com/pharo-graphics/Alexandrie)
- [Bloc](https://github.com/pharo-graphics/Bloc)

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ BaselineOfBlocSerialization >> baseline: spec [
{ #category : #accessing }
BaselineOfBlocSerialization >> dependency: spec [

"Serialization backends"
spec
baseline: 'Ston'
with: [ spec repository: 'github://svenvc/ston/repository' ].
Expand All @@ -33,7 +34,12 @@ BaselineOfBlocSerialization >> dependency: spec [
baseline: 'StashSerialization'
with: [ spec repository: 'github://OpenSmock/Stash/src' ].

"Graphic librairies: this section should be removed when librairies will be integrated in Pharo"
spec
baseline: 'Alexandrie'
with: [ spec repository: 'github://ThalesGroup/Alexandrie:dev' ].

spec
baseline: 'Bloc'
with: [ spec repository: 'github://OpenSmock/Bloc:dev/src' ].
with: [ spec repository: 'github://ThalesGroup/Bloc:dev' ].
]