-
Notifications
You must be signed in to change notification settings - Fork 7
/
settings.gradle.kts
38 lines (32 loc) · 1.19 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
import org.hypertrace.gradle.dependency.DependencyPluginSettingExtension
rootProject.name = "hypertrace-graphql-root"
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
maven("https://hypertrace.jfrog.io/artifactory/maven")
}
}
plugins {
id("org.hypertrace.version-settings") version "0.2.0"
id("org.hypertrace.dependency-settings") version "0.1.2"
}
configure<DependencyPluginSettingExtension> {
catalogVersion.set("0.3.23")
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
includeBuild("./hypertrace-core-graphql")
include(":hypertrace-graphql-service")
include(":hypertrace-graphql-impl")
include(":hypertrace-graphql-gateway-service-metric-utils")
include(":hypertrace-graphql-metric-schema")
include(":hypertrace-graphql-entity-schema")
include(":hypertrace-graphql-explorer-schema")
include(":hypertrace-graphql-attribute-scope")
include(":hypertrace-graphql-explorer-context")
include(":hypertrace-graphql-entity-type")
include(":hypertrace-graphql-service-config")
include(":hypertrace-graphql-spaces-schema")
include(":hypertrace-graphql-labels-schema-api")
include(":hypertrace-graphql-labels-schema-impl")
include(":hypertrace-graphql-span-processing-schema")