forked from hypertrace/hypertrace-core-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
34 lines (31 loc) · 1.21 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
rootProject.name = "hypertrace-core-graphql"
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
maven("https://hypertrace.jfrog.io/artifactory/maven")
}
}
plugins {
id("org.hypertrace.version-settings") version "0.2.0"
}
include(":hypertrace-core-graphql-service")
include(":hypertrace-core-graphql-impl")
include(":hypertrace-core-graphql-spi")
include(":hypertrace-core-graphql-context")
include(":hypertrace-core-graphql-schema-registry")
include(":hypertrace-core-graphql-attribute-store")
include(":hypertrace-core-graphql-deserialization")
include(":hypertrace-core-graphql-grpc-utils")
include(":hypertrace-core-graphql-schema-utils")
include(":hypertrace-core-graphql-gateway-service-utils")
include(":hypertrace-core-graphql-common-schema")
include(":hypertrace-core-graphql-metadata-schema")
include(":hypertrace-core-graphql-span-schema")
include(":hypertrace-core-graphql-trace-schema")
include(":hypertrace-core-graphql-attribute-scope")
include(":hypertrace-core-graphql-attribute-scope-constants")
include(":hypertrace-core-graphql-rx-utils")
include(":hypertrace-core-graphql-platform")
include(":hypertrace-core-graphql-test-platform")
include(":hypertrace-core-graphql-log-event-schema")