-
Notifications
You must be signed in to change notification settings - Fork 56
/
settings.gradle.kts
73 lines (68 loc) · 2.68 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
/*
* Copyright Amazon.com, Inc. or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
pluginManagement {
plugins {
id("com.diffplug.spotless") version "6.22.0"
id("com.github.ben-manes.versions") version "0.50.0"
id("com.github.jk1.dependency-license-report") version "2.5"
id("com.github.johnrengelman.shadow") version "8.1.1"
id("com.google.cloud.tools.jib") version "3.4.3"
id("io.github.gradle-nexus.publish-plugin") version "2.0.0"
id("nebula.release") version "18.0.6"
id("org.springframework.boot") version "2.7.17"
id("org.owasp.dependencycheck") version "8.4.0"
}
}
dependencyResolutionManagement {
repositories {
mavenCentral()
mavenLocal()
maven {
setUrl("https://oss.sonatype.org/content/repositories/snapshots")
}
}
}
include(":awsagentprovider")
include(":awspropagator")
include(":dependencyManagement")
include(":instrumentation:logback-1.0")
include(":instrumentation:log4j-2.13.2")
include(":instrumentation:jmx-metrics")
include(":otelagent")
include(":smoke-tests:fakebackend")
include(":smoke-tests:runner")
include(":smoke-tests:spring-boot")
include(":sample-apps:springboot")
include(":sample-apps:spark")
include(":sample-apps:spark-awssdkv1")
// Used for contract tests
include("appsignals-tests:images:mock-collector")
include("appsignals-tests:images:http-servers:spring-mvc")
include("appsignals-tests:images:http-servers:tomcat")
include("appsignals-tests:images:http-servers:netty-server")
include("appsignals-tests:contract-tests")
include("appsignals-tests:images:http-clients:native-http-client")
include("appsignals-tests:images:http-clients:spring-mvc-client")
include("appsignals-tests:images:http-clients:apache-http-client")
include("appsignals-tests:images:http-clients:netty-http-client")
include("appsignals-tests:images:aws-sdk:aws-sdk-base")
include("appsignals-tests:images:aws-sdk:aws-sdk-v1")
include("appsignals-tests:images:aws-sdk:aws-sdk-v2")
include("appsignals-tests:images:grpc:grpc-base")
include("appsignals-tests:images:grpc:grpc-server")
include("appsignals-tests:images:grpc:grpc-client")
include("appsignals-tests:images:jdbc")
include("appsignals-tests:images:kafka:kafka-producers")
include("appsignals-tests:images:kafka:kafka-consumers")