Skip to content

Commit

Permalink
Adding baseline
Browse files Browse the repository at this point in the history
  • Loading branch information
lin777 committed Dec 17, 2018
0 parents commit db428ed
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
'srcDirectory' : 'src'
}
3 changes: 3 additions & 0 deletions src/.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
#format : #tonel
}
49 changes: 49 additions & 0 deletions src/BaselineOfESUGApp/BaselineOfESUGApp.class.st
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
Class {
#name : #BaselineOfESUGApp,
#superclass : #BaselineOf,
#category : #BaselineOfESUGApp
}

{ #category : #baselines }
BaselineOfESUGApp >> baseline: spec [
<baseline>
spec
for: #common
do: [ self setUpDependencies: spec.
spec
package: 'ESUGApp-Components' with: [ spec requires: #('Seaside3' 'MaterialDesignLite') ];
package: 'ESUGApp-Controllers' with: [ spec requires: #('Seaside3' ) ];
package: 'ESUGApp-Library-MDL' with: [ spec requires: #('Seaside3' 'MaterialDesignLite') ];
package: 'ESUGApp-Views' with: [ spec requires: #('Seaside3' 'MaterialDesignLite' 'ESUGApp-Library-MDL' 'ESUGApp-Controllers' 'ESUGApp-Components') ];
package: 'ESUGApp-Session' with: [ spec requires: #('Seaside3') ];
package: 'ESUGApp-Models' with: [ spec requires: #('SandstoneDb') ];
package: 'ESUGApp-DB' with: [ spec requires: #('SandstoneDb' 'ESUGApp-Models') ];
package: 'ESUGApp-Test'
with:
[ spec requires: #( 'SandstoneDb' 'ESUGApp-Views' 'ESUGApp-DB' 'ESUGApp-Models') ] ]
]

{ #category : #baselines }
BaselineOfESUGApp >> setUpDependencies: spec [
spec
baseline: 'Seaside3'
with: [ spec
loads: #('Core' 'JQuery' 'Zinc');
repository: 'github://SeasideSt/Seaside:v3.2.5/repository' ].
"spec
baseline: 'Parasol'
with: [ spec
loads: 'tests';
repository: 'github://SeasideSt/Parasol/repository' ]."
spec
baseline: 'MaterialDesignLite'
with: [ spec
repository: 'github://DuneSt/MaterialDesignLite:master/src' ].
spec
project: 'SandstoneDb'
with: [ spec
className: 'ConfigurationOfSandstoneDb';
version: #stable;
repository: 'http://smalltalkhub.com/mc/gnaritas/SandstoneDb/main' ]

]
1 change: 1 addition & 0 deletions src/BaselineOfESUGApp/package.st
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Package { #name : #BaselineOfESUGApp }

0 comments on commit db428ed

Please sign in to comment.