-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
41 lines (36 loc) · 1.79 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
41 lines (36 loc) · 1.79 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
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
}
}
dependencyResolutionManagement {
repositories {
mavenCentral()
}
}
rootProject.name = "codegreen"
// Project structure mirrors GenHTTP: a project for the API, the engine (shared +
// internal), the Glyph11 parser, the modules, the test infrastructure, and the playground.
include(":api", ":glyph11", ":engine:shared", ":engine:internal", ":testing", ":playground")
include(":modules:io", ":modules:layouting", ":modules:redirects", ":modules:authentication")
include(":modules:conversion", ":modules:reflection", ":modules:functional")
include(":modules:webservices", ":modules:controllers")
project(":api").projectDir = file("API")
project(":glyph11").projectDir = file("Glyph11")
project(":engine").projectDir = file("Engine")
project(":engine:shared").projectDir = file("Engine/Shared")
project(":engine:internal").projectDir = file("Engine/Internal")
project(":testing").projectDir = file("Testing")
project(":playground").projectDir = file("Playground")
// Modules mirror GenHTTP's Modules/ folder, one Gradle project per module.
project(":modules").projectDir = file("Modules")
project(":modules:io").projectDir = file("Modules/IO")
project(":modules:layouting").projectDir = file("Modules/Layouting")
project(":modules:redirects").projectDir = file("Modules/Redirects")
project(":modules:authentication").projectDir = file("Modules/Authentication")
project(":modules:conversion").projectDir = file("Modules/Conversion")
project(":modules:reflection").projectDir = file("Modules/Reflection")
project(":modules:functional").projectDir = file("Modules/Functional")
project(":modules:webservices").projectDir = file("Modules/Webservices")
project(":modules:controllers").projectDir = file("Modules/Controllers")