-
Notifications
You must be signed in to change notification settings - Fork 6
/
settings.gradle.kts
55 lines (44 loc) · 1.84 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
55
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)
id("software.amazon.smithy.gradle.smithy-trait-package").version(smithyGradleVersion)
}
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
rootProject.name = "smithy-examples"
// ---- custom-trait-examples ----
// Template directories
include(":custom-trait-examples:custom-trait")
include(":custom-trait-examples:custom-trait-with-java-validator")
include(":custom-trait-examples:custom-trait-handwritten")
// Integration Tests
include(":custom-trait-examples:integ:custom-trait-test")
include(":custom-trait-examples:integ:custom-trait-with-java-validator-test")
include(":custom-trait-examples:integ:custom-trait-handwritten-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")