Skip to content

Commit

Permalink
Merge pull request #2 from sorabito/feature/AS-10831
Browse files Browse the repository at this point in the history
fix package locations again
  • Loading branch information
KazunoriUeda authored Sep 1, 2020
2 parents bbc56cf + a2f21b6 commit 8b477af
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions pharo-repository/BaselineOfAWS/BaselineOfAWS.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@ BaselineOfAWS >> baseline: spec [
baseline: 'NeoJSON'
with: [
spec repository: 'github://svenvc/NeoJSON/repository' ].

spec
package: 'XML-Parser'
with: [ spec
file: 'XML-Parser-monty.449';
repository: 'https://squeaksource.blueplane.jp/AsLegacyLibs' ].
baseline: 'XMLParser'
with: [
spec repository: 'github://pharo-contributions/XML-XMLParser:master'].

spec
for: #'pharo3.x'
do: [
Expand All @@ -35,9 +36,9 @@ BaselineOfAWS >> baseline: spec [
package: 'AWS-Core';
package: 'AWS-DynamoDB' with: [ spec requires: #('AWS-Core') ];
package: 'AWS-Lambda' with: [ spec requires: #('AWS-Core') ];
package: 'AWS-S3' with: [ spec requires: #('AWS-Core' 'XML-Parser') ];
package: 'AWS-S3' with: [ spec requires: #('AWS-Core' 'XMLParser') ];
package: 'AWS-ElasticTranscoder' with: [ spec requires: #('AWS-Core') ];
package: 'AWS-STS' with: [ spec requires: #('AWS-Core') ];
package: 'AWS-CloudFront' with: [ spec requires: #('AWS-Core') ];
package: 'AWS-SNS' with: [ spec requires: #('AWS-Core' 'XML-Parser') ] ].
package: 'AWS-SNS' with: [ spec requires: #('AWS-Core' 'XMLParser') ] ].
]

0 comments on commit 8b477af

Please sign in to comment.