forked from ktorio/ktor-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
65 lines (56 loc) · 1.73 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
rootProject.name = 'ktor-samples'
enableFeaturePreview('GRADLE_METADATA')
def module(group, name) {
include(name)
project(":$name").projectDir = file("$group/$name")
}
// ---------------------------
module('app', 'chat')
module('app', 'httpbin')
module('app', 'kweet')
module('app', 'youkube')
module('deployment', 'netty')
module('deployment', 'netty-embedded')
module('deployment', 'jetty')
module('deployment', 'jetty-embedded')
module('deployment', 'jetty-war')
module('deployment', 'tomcat-war')
module('deployment', 'google-appengine-standard')
module('deployment', 'docker')
module('feature', 'async')
module('feature', 'auth')
module('feature', 'custom-feature')
module('feature', 'guice')
module('feature', 'gson')
module('feature', 'http2-push')
module('feature', 'html-widget')
module('feature', 'jackson')
module('feature', 'json-client')
module('feature', 'locations')
module('feature', 'metrics')
module('feature', 'post')
module('feature', 'sessions')
module('feature', 'ssl')
module('feature', 'static-content')
module('feature', 'testable')
module('feature', 'timeout')
module('other', 'css-dsl')
module('other', 'maven-netty')
module('other', 'maven-google-appengine-standard')
module('other', 'proguard')
module('other', 'multiple-connectors')
module('other', 'sandbox')
module('other', 'simulate-slow-server')
module('other', 'rx')
module('other', 'filelisting')
module('other', 'structured-logging')
module('other', 'client-multipart')
module('other', 'client-tools')
// module('other', 'di-kodein')
module('other', 'reverse-proxy')
module('other', 'reverse-proxy-ws')
module('other', 'redirect-with-exception')
module('other', 'sse')
module('mpp', 'fullstack-mpp')
module('mpp', 'client-mpp')
module('internal', 'gradle-maven-test')