forked from squirrel-sql-client/squirrel-sql-code
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.gradle
More file actions
53 lines (48 loc) · 905 Bytes
/
settings.gradle
File metadata and controls
53 lines (48 loc) · 905 Bytes
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
rootProject.name = 'squirrel-sql'
include 'core'
include 'versionChecker'
gradle.ext.allPlugins = [
'cache',
'codecompletion',
'dataimport',
'db2',
'dbcopy',
'derby',
'example',
'exportconfig',
'favs',
'firebird',
'graph',
'greenplum',
'h2',
'hibernate',
'highresicon',
'i18n',
'informix',
'laf',
'mssql',
'multisource',
'mysql',
'netezza',
'oracle',
'postgres',
'refactoring',
'sessionscript',
'smarttools',
'sqlbookmark',
'sqlparam',
'sqlreplace',
'sqlscript',
'sqlval',
'swingViolations',
'sybase',
'syntax',
'vertica',
'wikiTableConfigurations',
]
gradle.ext.allPlugins.each { dirName ->
include "$dirName"
project(":$dirName").projectDir = file("plugins/$dirName")
}
include 'macosx'
project(':macosx').projectDir = file('plugins/macosx')