forked from rusefi/rusefi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
79 lines (66 loc) · 3.52 KB
/
Copy pathsettings.gradle
File metadata and controls
79 lines (66 loc) · 3.52 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
plugins {
// [tag:java8]
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.8.0'
}
include ':version'
project(':version').projectDir = new File(rootRelativePath + 'java_tools/version')
include ':msq-file'
project(':msq-file').projectDir = new File(rootRelativePath + 'java_tools/msq-file')
include ':trigger-image'
project(':trigger-image').projectDir = new File(rootRelativePath + 'java_tools/trigger-image')
include ':tune-tools'
project(':tune-tools').projectDir = new File(rootRelativePath + 'java_tools/tune-tools')
include ':proxy_server'
// gradle naming convention does not like '_' symbol
project(':proxy_server').projectDir = new File(rootRelativePath + 'java_tools/proxy_server')
include ':shared_io'
project(':shared_io').projectDir = new File(rootRelativePath + 'java_console/shared_io')
include ':core_ui'
project(':core_ui').projectDir = new File(rootRelativePath + 'java_console/core_ui')
include ':peak-can-basic'
project(':peak-can-basic').projectDir = new File(rootRelativePath + 'java_console/peak-can-basic')
include ':trigger-ui'
project(':trigger-ui').projectDir = new File(rootRelativePath + 'java_console/trigger-ui')
include ':logging-api'
project(':logging-api').projectDir = new File(rootRelativePath + 'java_console/logging-api')
include ':gcc_map_reader'
include ':enum_to_string'
project(':enum_to_string').projectDir = new File(rootRelativePath + 'java_tools/enum_to_string')
include ':bin2header'
project(':bin2header').projectDir = new File(rootRelativePath + 'java_tools/bin2header')
include ':config_definition_base'
project(':config_definition_base').projectDir = new File(rootRelativePath + 'java_tools/configuration_definition_base')
include ':config_definition'
project(':config_definition').projectDir = new File(rootRelativePath + 'java_tools/configuration_definition')
include ':ts_plugin_launcher'
project(':ts_plugin_launcher').projectDir = new File(rootRelativePath + 'java_tools/ts_plugin_launcher')
include ':ts_screenshots'
project(':ts_screenshots').projectDir = new File(rootRelativePath + 'java_tools/ts_screenshots')
include ':ts_plugin'
project(':ts_plugin').projectDir = new File(rootRelativePath + 'java_tools/ts_plugin')
include ':autoupdate'
project(':autoupdate').projectDir = new File(rootRelativePath + 'java_console/autoupdate')
include ':shared_ui'
project(':shared_ui').projectDir = new File(rootRelativePath + 'java_console/shared_ui')
include ':ecu_io'
project(':ecu_io').projectDir = new File(rootRelativePath + 'java_console/io')
include ':logging'
project(':logging').projectDir = new File(rootRelativePath + 'java_console/logging')
include ':logging-api'
project(':logging-api').projectDir = new File(rootRelativePath + 'java_console/logging-api')
include ':inifile'
project(':inifile').projectDir = new File(rootRelativePath + 'java_console/inifile')
include ':models'
project(':models').projectDir = new File(rootRelativePath + 'java_console/models')
include ':autotest'
project(':autotest').projectDir = new File(rootRelativePath + 'java_console/autotest')
include ':ui'
project(':ui').projectDir = new File(rootRelativePath + 'java_console/ui')
include ':luaformatter'
project(':luaformatter').projectDir = new File(rootRelativePath + 'java_console/luaformatter_module')
include ':mcp_ecu'
project(':mcp_ecu').projectDir = new File(rootRelativePath + 'java_console/mcp_ecu')
include ':mcp_can'
project(':mcp_can').projectDir = new File(rootRelativePath + 'java_console/mcp_can')
include ':enum_generator'
project(':enum_generator').projectDir = new File(rootRelativePath + 'java_tools/enum_generator')