forked from smithy-lang/smithy-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
54 lines (43 loc) · 1.74 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
51
52
53
54
pluginManagement {
val smithyGradleVersion: String by settings
plugins {
id("software.amazon.smithy.gradle.smithy-jar").version(smithyGradleVersion)
id("software.amazon.smithy.gradle.smithy-base").version(smithyGradleVersion)
}
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
rootProject.name = "smithy-examples"
// ---- custom-trait-examples ----
// Template directories
include(":custom-trait-examples:custom-annotation-trait")
include(":custom-trait-examples:custom-string-trait")
include(":custom-trait-examples:custom-structure-trait")
// Integration Tests
include(":custom-trait-examples:integ:custom-annotation-trait-test")
include(":custom-trait-examples:integ:custom-string-trait-test")
include(":custom-trait-examples:integ:custom-structure-trait-test")
// ---- shared models ----
// Template directories
include(":shared-model-examples:common-shapes")
// Integration Tests
include(":shared-model-examples:integ")
// ---- linting and validation ----
// templates
include(":linting-and-validation-examples:custom-linter")
include(":linting-and-validation-examples:common-linting-configuration")
include(":linting-and-validation-examples:custom-validator")
include(":linting-and-validation-examples:decorators")
// integration tests
include(":linting-and-validation-examples:integ:common-linting-configuration-test")
include(":linting-and-validation-examples:integ:custom-linter-test")
include(":linting-and-validation-examples:integ:custom-validator-test")
include(":linting-and-validation-examples:integ:decorators-test")
// ---- Gradle Plugin Examples -----
// Templates
includeBuild("gradle-plugin-examples/tutorial")
// Integ test
include(":gradle-plugin-examples:integ:tutorial")