Skip to content

Commit

Permalink
Add glorp
Browse files Browse the repository at this point in the history
  • Loading branch information
astares committed Jul 15, 2023
1 parent 393b31d commit 1fe8175
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions src/BaselineOfBootWeb/BaselineOfBootWeb.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ BaselineOfBootWeb >> baseline: spec [
"Dependencies"
self
iniFile: spec;
seaside: spec.
seaside: spec;
glorp: spec.

"Own packages and groups"
self bootWeb: spec ]
Expand All @@ -26,7 +27,7 @@ BaselineOfBootWeb >> bootWeb: spec [

"Packages"
spec
package: 'Boot-Web-Core' with: [ spec requires: #('INIFile' 'Seaside3') ];
package: 'Boot-Web-Core' with: [ spec requires: #('INIFile' 'Seaside3' 'Glorp') ];
package: 'Boot-Web-Core-Tests' with: [ spec requires: #('Boot-Web-Core') ];
package: 'Boot-Web-UI' with: [ spec requires: #('Boot-Web-Core') ];
package: 'Boot-Web-UI-Tests' with: [ spec requires: #('Boot-Web-UI') ].
Expand All @@ -41,6 +42,15 @@ BaselineOfBootWeb >> bootWeb: spec [
group: 'default' with: #('all')
]

{ #category : #dependencies }
BaselineOfBootWeb >> glorp: spec [

spec
baseline: 'Glorp'
with: [
spec repository: 'github://pharo-rdbms/glorp:master/src' ]
]

{ #category : #dependencies }
BaselineOfBootWeb >> iniFile: spec [

Expand Down

0 comments on commit 1fe8175

Please sign in to comment.