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
12 changes: 10 additions & 2 deletions .smalltalkci.default.ston
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,15 @@ SmalltalkCISpec {
#baseline : 'ToploSerialization',
#directory : 'src',
#onConflict : #useLoaded,
#platforms : [ #pharo ]
#platforms : [ #pharo ],
#onConflict : #useIncoming,
#onUpgrade : #useLoaded,
#ignoreImage : true
}
]
],

#testing : {
#failOnZeroTests : false,
#packages : [ 'Toplo-Serialization.*.Tests' ]
}
}
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
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ Metacello new

## Dependencies

- [Toplo](https://github.com/plantec/Toplo)
- [Bloc-Serialization](https://github.dev/OpenSmock/Bloc-Serialization)
- [Album](https://github.com/pharo-graphics/Album)
- [Toplo](https://github.com/pharo-graphics/Toplo)

## 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 @@ -33,12 +33,13 @@ BaselineOfToploSerialization >> dependency: 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://OpenSmock/Album:master' ].
with: [ spec repository: 'github://ThalesGroup/Album:dev' ].

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