BaselineOfZnock.class.st 724 B

123456789101112131415161718192021222324252627
  1. Class {
  2. #name : #BaselineOfZnock,
  3. #superclass : #BaselineOf,
  4. #category : #BaselineOfZnock
  5. }
  6. { #category : #baselines }
  7. BaselineOfZnock >> baseline: spec [
  8. <baseline>
  9. spec for: #common do: [ spec
  10. package: 'Znock' with: [ spec
  11. requires: #('ZincHTTPComponents') ];
  12. package: 'Znock-Mocketry' with: [ spec
  13. requires: #('Znock' 'Mocketry') ];
  14. baseline: 'Mocketry' with: [ spec
  15. repository: 'github://dionisiydk/Mocketry:v4.0.x' ];
  16. configuration: 'ZincHTTPComponents' with: [ spec
  17. repository: 'http://mc.stfx.eu/ZincHTTPComponents' ];
  18. group: 'default' with: #('Core');
  19. group: 'development' with: #('Core' 'Tests');
  20. group: 'Core' with: #('Znock' 'Znock-Mocketry');
  21. group: 'Tests' with: #() ]
  22. ]