-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.gradle
More file actions
91 lines (86 loc) · 2.39 KB
/
settings.gradle
File metadata and controls
91 lines (86 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
rootProject.name = "Grace.Framework"
include (
'docs',
'grace-api',
'grace-boot',
'grace-boot-async',
'grace-boot-cache',
'grace-boot-events',
'grace-boot-hibernate',
'grace-boot-logging',
'grace-boot-mongodb',
'grace-boot-persistence',
'grace-boot-plugin',
'grace-boot-rest',
'grace-boot-test',
'grace-boot-validation',
'grace-boot-web',
'grace-bootstrap',
'grace-cache-core',
'grace-cli',
'grace-codecs',
'grace-console',
'grace-core',
'grace-databinding',
'grace-docs',
'grace-encoder',
'grace-gsp',
'grace-logging',
'grace-scaffolding-core',
'grace-shell',
'grace-spring',
// 'grace-spring-boot',
'grace-taglib',
'grace-test',
'grace-test-support',
'grace-util',
'grace-views-core',
'grace-views-json',
'grace-views-markup',
'grace-web',
'grace-web-async',
'grace-web-databinding',
'grace-web-gsp',
'grace-web-mvc',
'grace-web-rest',
'grace-web-taglib',
'grace-web-url-mappings',
// POM / BOMs
'grace-dependencies',
'grace-bom',
// Plugins
'grace-plugin-api',
'grace-plugin-async',
'grace-plugin-cache',
'grace-plugin-codecs',
'grace-plugin-controllers',
'grace-plugin-converters',
'grace-plugin-core',
'grace-plugin-database-migration',
'grace-plugin-databinding',
'grace-plugin-datasource',
'grace-plugin-domain-class',
'grace-plugin-dynamic-modules',
'grace-plugin-events',
'grace-plugin-fields',
'grace-plugin-geb',
'grace-plugin-gsp',
'grace-plugin-interceptors',
'grace-plugin-i18n',
'grace-plugin-management',
'grace-plugin-mimetypes',
'grace-plugin-rest',
'grace-plugin-scaffolding',
'grace-plugin-services',
'grace-plugin-taglibs',
'grace-plugin-url-mappings',
'grace-plugin-validation',
// Test Suite
'grace-test-suite-base',
'grace-test-suite-persistence',
'grace-test-suite-uber',
'grace-test-suite-web',
// Gradle Plugin
'grace-gradle-model',
'grace-gradle-plugin'
)