forked from archguard/archguard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
50 lines (44 loc) · 1.2 KB
/
settings.gradle.kts
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
rootProject.name = "Archguard"
// meta type
include(":meta")
// backend
include(":server")
/**
* architecture as code repos
*/
include(":architecture-as-code:domain")
include(":architecture-as-code:dsl")
include(":architecture-as-code:repl-api")
/**
* scanner projects:
* scanner projects:
* - core: define the core models and apis
* - cli: executable command line tools to manage and choregraph
*/
include(
":scanner_core",
":scanner_cli",
// source code
":analyser_sourcecode:lang_kotlin",
":analyser_sourcecode:lang_java",
":analyser_sourcecode:lang_typescript",
":analyser_sourcecode:lang_python",
":analyser_sourcecode:lang_golang",
":analyser_sourcecode:lang_csharp",
":analyser_sourcecode:lang_scala",
":analyser_sourcecode:feat_apicalls",
":analyser_sourcecode:feat_datamap",
":analyser_git",
":analyser_diff_changes",
":analyser_sca",
":analyser_architecture",
)
/**
* linters projects: a specific set of analysers to detect specific patterns
*/
include(":rule-core")
include(":rule-linter:rule-sql")
include(":rule-linter:rule-test-code")
include(":rule-linter:rule-webapi")
include(":rule-linter:rule-code")
include(":rule-doc-generator")