-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsettings.gradle
75 lines (54 loc) · 1.56 KB
/
settings.gradle
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
rootProject.name = 'otusJava'
include 'L01-gradle'
include 'L02-gradle2'
include 'L02-gradle2-libApi'
include 'L02-gradle2-libApiUse'
include 'L03-qa'
include 'L04-generics'
include 'L05-collections'
include 'L06-reflections'
include 'L08-gc:demo'
include 'L08-gc:homework'
include 'L09-remoteDebug'
include 'L10-byteCodes'
include 'L11-java8'
include 'L12-solid'
include 'L13-behavioralPatterns'
include 'L14-creationalPatterns'
include 'L15-structuralPatterns:demo'
include 'L15-structuralPatterns:homework'
include 'L16-io:demo'
include 'L16-io:homework'
include 'L17-nio'
include 'L18-jdbc:demo'
include 'L18-jdbc:homework'
include 'L19-rdbms'
include 'L20-hibernate'
include 'L21-jpql:class-demo'
include 'L21-jpql:homework-template'
include 'L22-cache'
include 'L23-noSQL:mongo-db-demo'
include 'L23-noSQL:mongo-db-reactive-demo'
include 'L23-noSQL:neo4j-demo'
include 'L23-noSQL:redis-demo'
include 'L23-noSQL:cassandra-demo'
include 'L24-webServer'
include 'L25-di:class-demo'
include 'L25-di:homework-template'
include 'L26-springBootMvc'
include 'L27-websocket:websocket'
include 'L27-websocket:messager'
include 'L27-websocket:messager-starter'
include 'L27-websocket:application'
include 'L28-springDataJdbc'
include 'L29-threads'
include 'L30-JMM'
include 'L31-executors'
include 'L32-concurrentCollections:ConcurrentCollections'
include 'L32-concurrentCollections:QueueDemo'
include 'L33-multiprocess:processes-demo'
include 'L33-multiprocess:sockets-demo'
include 'L33-multiprocess:rmi-demo'
include 'L33-multiprocess:grpc-demo'
include 'L34-NIO'
include 'L35-netty'