Skip to content

Commit db428ed

Browse files
author
lin777
committed
Adding baseline
0 parents  commit db428ed

File tree

4 files changed

+56
-0
lines changed

4 files changed

+56
-0
lines changed

.project

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
'srcDirectory' : 'src'
3+
}

src/.properties

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
#format : #tonel
3+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
Class {
2+
#name : #BaselineOfESUGApp,
3+
#superclass : #BaselineOf,
4+
#category : #BaselineOfESUGApp
5+
}
6+
7+
{ #category : #baselines }
8+
BaselineOfESUGApp >> baseline: spec [
9+
<baseline>
10+
spec
11+
for: #common
12+
do: [ self setUpDependencies: spec.
13+
spec
14+
package: 'ESUGApp-Components' with: [ spec requires: #('Seaside3' 'MaterialDesignLite') ];
15+
package: 'ESUGApp-Controllers' with: [ spec requires: #('Seaside3' ) ];
16+
package: 'ESUGApp-Library-MDL' with: [ spec requires: #('Seaside3' 'MaterialDesignLite') ];
17+
package: 'ESUGApp-Views' with: [ spec requires: #('Seaside3' 'MaterialDesignLite' 'ESUGApp-Library-MDL' 'ESUGApp-Controllers' 'ESUGApp-Components') ];
18+
package: 'ESUGApp-Session' with: [ spec requires: #('Seaside3') ];
19+
package: 'ESUGApp-Models' with: [ spec requires: #('SandstoneDb') ];
20+
package: 'ESUGApp-DB' with: [ spec requires: #('SandstoneDb' 'ESUGApp-Models') ];
21+
package: 'ESUGApp-Test'
22+
with:
23+
[ spec requires: #( 'SandstoneDb' 'ESUGApp-Views' 'ESUGApp-DB' 'ESUGApp-Models') ] ]
24+
]
25+
26+
{ #category : #baselines }
27+
BaselineOfESUGApp >> setUpDependencies: spec [
28+
spec
29+
baseline: 'Seaside3'
30+
with: [ spec
31+
loads: #('Core' 'JQuery' 'Zinc');
32+
repository: 'github://SeasideSt/Seaside:v3.2.5/repository' ].
33+
"spec
34+
baseline: 'Parasol'
35+
with: [ spec
36+
loads: 'tests';
37+
repository: 'github://SeasideSt/Parasol/repository' ]."
38+
spec
39+
baseline: 'MaterialDesignLite'
40+
with: [ spec
41+
repository: 'github://DuneSt/MaterialDesignLite:master/src' ].
42+
spec
43+
project: 'SandstoneDb'
44+
with: [ spec
45+
className: 'ConfigurationOfSandstoneDb';
46+
version: #stable;
47+
repository: 'http://smalltalkhub.com/mc/gnaritas/SandstoneDb/main' ]
48+
49+
]

src/BaselineOfESUGApp/package.st

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Package { #name : #BaselineOfESUGApp }

0 commit comments

Comments
 (0)