-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
29 lines (26 loc) · 863 Bytes
/
settings.gradle
File metadata and controls
29 lines (26 loc) · 863 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
rootProject.name = 'java-tutorial'
def modules = [
'01-setup-hello-world',
'02-variables-and-types',
'03-expressions-and-control-flow',
'04-loops-and-iteration',
'05-methods-and-parameters',
'06-arrays-and-lists',
'07-classes-and-objects',
'08-encapsulation-and-immutability',
'09-enums-and-switch',
'10-error-handling',
'11-basic-io',
'12-unit-testing-basics',
'13-test-driven-exercise',
'14-collections-and-maps',
'15-inheritance-and-interfaces',
'16-functional-basics',
'17-capstone-mini-robot-command',
]
modules.each { name ->
include(":java:${name}")
project(":java:${name}").projectDir = file("java/${name}")
include(":kotlin:${name}")
project(":kotlin:${name}").projectDir = file("kotlin/${name}")
}