-
Notifications
You must be signed in to change notification settings - Fork 13
/
settings.gradle.kts
134 lines (116 loc) · 6.53 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
rootProject.name = "java-dynamic-sqs-listener-parent"
pluginManagement {
plugins {
id("org.springframework.boot") version "3.1.2"
id("com.github.davidmc24.gradle.plugin.avro") version "1.2.1"
id("org.jlleitschuh.gradle.ktlint") version "11.5.0"
id("com.github.spotbugs") version "4.5.1"
id("com.jashmore.gradle.github.release") version "0.0.2"
}
repositories {
gradlePluginPortal()
jcenter()
mavenLocal()
maven(url = "https://dl.bintray.com/gradle/gradle-plugins")
}
}
include(
// Core
":java-dynamic-sqs-listener-api",
":java-dynamic-sqs-listener-core",
// Annotations
":java-dynamic-sqs-listener-annotations",
// Micronaut
":java-dynamic-sqs-listener-micronaut-core",
":java-dynamic-sqs-listener-micronaut-inject-java",
// Spring
":java-dynamic-sqs-listener-spring-core",
":java-dynamic-sqs-listener-spring-starter",
// Ktor
":java-dynamic-sqs-listener-ktor-core",
// Extensions
":aws-xray-extension-core",
":aws-xray-extension-spring-boot",
":brave-extension-core",
":brave-extension-spring-boot",
":core-kotlin-dsl",
// - Spring Cloud Scheme Registry Extension
":spring-cloud-schema-registry-extension-api",
":avro-spring-cloud-schema-registry-extension",
":in-memory-spring-cloud-schema-registry",
// Utils
":avro-spring-cloud-schema-registry-sqs-client",
":common-utils",
":elasticmq-sqs-client",
":expected-test-exception",
":local-sqs-async-client",
":proxy-method-interceptor",
":sqs-brave-tracing",
":annotation-utils",
":documentation-annotations",
// Examples
":example:auto-visibility-extender-example",
":example:aws-xray-spring-example",
":example:core-example",
":example:spring-aws-example",
":example:core-kotlin-example",
":example:fifo-example",
":example:ktor-example",
":example:micronaut-integration-test-example",
":example:spring-cloud-schema-registry:consumer",
":example:spring-cloud-schema-registry:producer",
":example:spring-cloud-schema-registry:producer-two",
":example:spring-integration-test-example",
":example:spring-multiple-aws-account-example",
":example:spring-sleuth-example",
":example:spring-starter-example",
":example:spring-starter-minimal-example"
)
// Core
project(":java-dynamic-sqs-listener-api").projectDir = file("api")
project(":java-dynamic-sqs-listener-core").projectDir = file("core")
// Annotations
project(":java-dynamic-sqs-listener-annotations").projectDir = file("annotations")
// Micronaut
project(":java-dynamic-sqs-listener-micronaut-core").projectDir = file("micronaut/micronaut-core")
project(":java-dynamic-sqs-listener-micronaut-inject-java").projectDir = file("micronaut/micronaut-inject-java")
// Spring
project(":java-dynamic-sqs-listener-spring-core").projectDir = file("spring/spring-core")
project(":java-dynamic-sqs-listener-spring-starter").projectDir = file("spring/spring-starter")
// Extensions
project(":aws-xray-extension-core").projectDir = file("extensions/aws-xray-extension/core")
project(":aws-xray-extension-spring-boot").projectDir = file("extensions/aws-xray-extension/spring-boot")
project(":brave-extension-core").projectDir = file("extensions/brave-extension/core")
project(":brave-extension-spring-boot").projectDir = file("extensions/brave-extension/spring-boot")
project(":core-kotlin-dsl").projectDir = file("extensions/core-kotlin-dsl")
project(":java-dynamic-sqs-listener-ktor-core").projectDir = file("ktor/core")
project(":spring-cloud-schema-registry-extension-api").projectDir = file("extensions/spring-cloud-schema-registry-extension/spring-cloud-schema-registry-extension-api")
project(":avro-spring-cloud-schema-registry-extension").projectDir = file("extensions/spring-cloud-schema-registry-extension/avro-spring-cloud-schema-registry-extension")
project(":in-memory-spring-cloud-schema-registry").projectDir = file("extensions/spring-cloud-schema-registry-extension/in-memory-spring-cloud-schema-registry")
// Utils
project(":annotation-utils").projectDir = file("util/annotation-utils")
project(":avro-spring-cloud-schema-registry-sqs-client").projectDir = file("util/avro-spring-cloud-schema-registry-sqs-client")
project(":common-utils").projectDir = file("util/common-utils")
project(":documentation-annotations").projectDir = file("util/documentation-annotations")
project(":elasticmq-sqs-client").projectDir = file("util/elasticmq-sqs-client")
project(":expected-test-exception").projectDir = file("util/expected-test-exception")
project(":local-sqs-async-client").projectDir = file("util/local-sqs-async-client")
project(":proxy-method-interceptor").projectDir = file("util/proxy-method-interceptor")
project(":sqs-brave-tracing").projectDir = file("util/sqs-brave-tracing")
// Examples
project(":example:auto-visibility-extender-example").projectDir = file("examples/auto-visibility-extender-example")
project(":example:aws-xray-spring-example").projectDir = file("examples/aws-xray-spring-example")
project(":example:core-example").projectDir = file("examples/core-example")
project(":example:core-kotlin-example").projectDir = file("examples/core-kotlin-example")
project(":example:fifo-example").projectDir = file("examples/fifo-example")
project(":example:ktor-example").projectDir = file("examples/ktor-example")
project(":example:micronaut-integration-test-example").projectDir = file("examples/micronaut-integration-test-example")
project(":example:spring-aws-example").projectDir = file("examples/spring-aws-example")
project(":example:spring-cloud-schema-registry:consumer").projectDir = file("examples/spring-cloud-schema-registry-example/spring-cloud-schema-registry-consumer")
project(":example:spring-cloud-schema-registry:producer").projectDir = file("examples/spring-cloud-schema-registry-example/spring-cloud-schema-registry-producer")
project(":example:spring-cloud-schema-registry:producer-two").projectDir = file("examples/spring-cloud-schema-registry-example/spring-cloud-schema-registry-producer-two")
project(":example:spring-integration-test-example").projectDir = file("examples/spring-integration-test-example")
project(":example:spring-multiple-aws-account-example").projectDir = file("examples/spring-multiple-aws-account-example")
project(":example:spring-sleuth-example").projectDir = file("examples/spring-sleuth-example")
project(":example:spring-starter-example").projectDir = file("examples/spring-starter-example")
project(":example:spring-starter-minimal-example").projectDir = file("examples/spring-starter-minimal-example")