diff --git a/.github/workflows/update-locks.yml b/.github/workflows/update-locks.yml new file mode 100644 index 00000000..ca31501e --- /dev/null +++ b/.github/workflows/update-locks.yml @@ -0,0 +1,31 @@ +name: Update Locks +on: + workflow_dispatch: + schedule: + - cron: '12 35 * * 5' +jobs: + update-versions: + runs-on: ubuntu-22.04 + steps: + - name: Check out code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + submodules: recursive + - name: Calculate simple repository name + id: repo-basename + shell: bash + run: | + echo "value=`basename ${{ github.repository }}`" >> $GITHUB_OUTPUT + - name: Get Token from Github App + uses: tibdex/github-app-token@v2 + id: generate-token + with: + app_id: ${{ secrets.GH_CI_APP_ID }} + private_key: ${{ secrets.GH_CI_APP_PRIVATE_KEY }} + repositories: >- + [${{ toJson(steps.repo-basename.outputs.value) }}] + - name: Update locks if needed + uses: hypertrace/github-actions/raise-lock-pr@main + with: + token: ${{ steps.generate-token.outputs.token }} \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index 631746a3..f0c975f5 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,34 +1,19 @@ plugins { - id("org.hypertrace.repository-plugin") version "0.4.2" - id("org.hypertrace.ci-utils-plugin") version "0.3.2" - id("org.hypertrace.jacoco-report-plugin") version "0.2.1" apply false - id("org.hypertrace.docker-java-application-plugin") version "0.9.9" apply false - id("org.hypertrace.docker-publish-plugin") version "0.9.9" apply false - id("org.hypertrace.code-style-plugin") version "1.2.0" apply false - id("org.owasp.dependencycheck") version "8.2.1" + alias(commonLibs.plugins.hypertrace.ciutils) + alias(commonLibs.plugins.hypertrace.codestyle) apply false + alias(commonLibs.plugins.owasp.dependencycheck) } subprojects { group = "org.hypertrace.graphql" pluginManager.withPlugin("java") { - apply(plugin = "org.hypertrace.code-style-plugin") + apply(plugin = commonLibs.plugins.hypertrace.codestyle.get().pluginId) configure { sourceCompatibility = JavaVersion.VERSION_11 targetCompatibility = JavaVersion.VERSION_11 } } - - pluginManager.withPlugin("java-library") { - dependencies { - "api"(platform(project(":hypertrace-graphql-platform"))) - "annotationProcessor"(platform(project(":hypertrace-graphql-platform"))) - "testAnnotationProcessor"(platform(project(":hypertrace-graphql-platform"))) - "testImplementation"(platform("org.hypertrace.core.graphql:hypertrace-core-graphql-test-platform")) - "compileOnly"(platform(project(":hypertrace-graphql-platform"))) - "testCompileOnly"(platform(project(":hypertrace-graphql-platform"))) - } - } } dependencyCheck { diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml new file mode 100644 index 00000000..3b2bdc42 --- /dev/null +++ b/gradle/libs.versions.toml @@ -0,0 +1,20 @@ +[libraries] +graphql-annotations = { module = "io.github.graphql-java:graphql-java-annotations", version = "9.1" } +graphql-servlet = { module = "com.graphql-java-kickstart:graphql-java-servlet", version = "14.0.0" } + +core-attribute-constants = { module = "org.hypertrace.core.graphql:hypertrace-core-graphql-attribute-scope-constants" } +core-schema-common = { module = "org.hypertrace.core.graphql:hypertrace-core-graphql-common-schema" } +core-schema-utils = { module = "org.hypertrace.core.graphql:hypertrace-core-graphql-schema-utils" } +core-schema-registry = { module = "org.hypertrace.core.graphql:hypertrace-core-graphql-schema-registry" } +core-schema-metadata = { module = "org.hypertrace.core.graphql:hypertrace-core-graphql-metadata-schema" } +core-schema-spans = { module = "org.hypertrace.core.graphql:hypertrace-core-graphql-span-schema" } +core-schema-logevents = { module = "org.hypertrace.core.graphql:hypertrace-core-graphql-log-event-schema" } +core-schema-traces = { module = "org.hypertrace.core.graphql:hypertrace-core-graphql-trace-schema" } +core-attribute-store = { module = "org.hypertrace.core.graphql:hypertrace-core-graphql-attribute-store" } +core-spi = { module = "org.hypertrace.core.graphql:hypertrace-core-graphql-spi" } +core-grpc = { module = "org.hypertrace.core.graphql:hypertrace-core-graphql-grpc-utils" } +core-context = { module = "org.hypertrace.core.graphql:hypertrace-core-graphql-context" } +core-deserialization = { module = "org.hypertrace.core.graphql:hypertrace-core-graphql-deserialization" } +core-rxutils = { module = "org.hypertrace.core.graphql:hypertrace-core-graphql-rx-utils" } +core-request-transformation = { module = "org.hypertrace.core.graphql:hypertrace-core-graphql-request-transformation" } +core-gateway-utils = { module = "org.hypertrace.core.graphql:hypertrace-core-graphql-gateway-service-utils" } diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 7454180f..7f93135c 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index ac0b842f..8838ba97 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,7 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.2-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-all.zip +networkTimeout=10000 +validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew index 1b6c7873..1aa94a42 100755 --- a/gradlew +++ b/gradlew @@ -55,7 +55,7 @@ # Darwin, MinGW, and NonStop. # # (3) This script is generated from the Groovy template -# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt # within the Gradle project. # # You can find Gradle at https://github.com/gradle/gradle/. @@ -80,13 +80,11 @@ do esac done -APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit - -APP_NAME="Gradle" +# This is normally unused +# shellcheck disable=SC2034 APP_BASE_NAME=${0##*/} - -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD=maximum @@ -133,22 +131,29 @@ location of your Java installation." fi else JAVACMD=java - which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. Please set the JAVA_HOME variable in your environment to match the location of your Java installation." + fi fi # Increase the maximum file descriptors if we can. if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then case $MAX_FD in #( max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 MAX_FD=$( ulimit -H -n ) || warn "Could not query maximum file descriptor limit" esac case $MAX_FD in #( '' | soft) :;; #( *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 ulimit -n "$MAX_FD" || warn "Could not set maximum file descriptor limit to $MAX_FD" esac @@ -193,11 +198,15 @@ if "$cygwin" || "$msys" ; then done fi -# Collect all arguments for the java command; -# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of -# shell script including quotes and variable substitutions, so put them in -# double quotes to make sure that they get re-expanded; and -# * put everything else in single quotes, so that it's not re-expanded. + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. set -- \ "-Dorg.gradle.appname=$APP_BASE_NAME" \ @@ -205,6 +214,12 @@ set -- \ org.gradle.wrapper.GradleWrapperMain \ "$@" +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + # Use "xargs" to parse quoted args. # # With -n1 it outputs one arg per line, with the quotes and backslashes removed. diff --git a/gradlew.bat b/gradlew.bat index 107acd32..93e3f59f 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -14,7 +14,7 @@ @rem limitations under the License. @rem -@if "%DEBUG%" == "" @echo off +@if "%DEBUG%"=="" @echo off @rem ########################################################################## @rem @rem Gradle startup script for Windows @@ -25,7 +25,8 @@ if "%OS%"=="Windows_NT" setlocal set DIRNAME=%~dp0 -if "%DIRNAME%" == "" set DIRNAME=. +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% @@ -40,7 +41,7 @@ if defined JAVA_HOME goto findJavaFromJavaHome set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto execute +if %ERRORLEVEL% equ 0 goto execute echo. echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. @@ -75,13 +76,15 @@ set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar :end @rem End local scope for the variables with windows NT shell -if "%ERRORLEVEL%"=="0" goto mainEnd +if %ERRORLEVEL% equ 0 goto mainEnd :fail rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of rem the _cmd.exe /c_ return code! -if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 -exit /b 1 +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% :mainEnd if "%OS%"=="Windows_NT" endlocal diff --git a/hypertrace-core-graphql b/hypertrace-core-graphql index eee26127..0c71e639 160000 --- a/hypertrace-core-graphql +++ b/hypertrace-core-graphql @@ -1 +1 @@ -Subproject commit eee26127499686dd6136744f5daf0f125b9b1b25 +Subproject commit 0c71e6397852e63fa4f69708d40aa592030988ba diff --git a/hypertrace-graphql-attribute-scope/build.gradle.kts b/hypertrace-graphql-attribute-scope/build.gradle.kts index c17047dd..48f04351 100644 --- a/hypertrace-graphql-attribute-scope/build.gradle.kts +++ b/hypertrace-graphql-attribute-scope/build.gradle.kts @@ -3,9 +3,9 @@ plugins { } dependencies { - api("com.google.inject:guice") - api("io.reactivex.rxjava3:rxjava") - api("org.hypertrace.core.graphql:hypertrace-core-graphql-attribute-scope-constants") - api("org.hypertrace.core.graphql:hypertrace-core-graphql-common-schema") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-attribute-store") + api(commonLibs.guice) + api(commonLibs.rxjava3) + api(localLibs.core.attribute.constants) + api(localLibs.core.schema.common) + implementation(localLibs.core.attribute.store) } diff --git a/hypertrace-graphql-attribute-scope/gradle.lockfile b/hypertrace-graphql-attribute-scope/gradle.lockfile new file mode 100644 index 00000000..7f281647 --- /dev/null +++ b/hypertrace-graphql-attribute-scope/gradle.lockfile @@ -0,0 +1,58 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +aopalliance:aopalliance:1.0=compileClasspath,runtimeClasspath +com.auth0:java-jwt:4.4.0=runtimeClasspath +com.auth0:jwks-rsa:0.22.0=runtimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.15.2=runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.15.2=compileClasspath,runtimeClasspath +com.google.android:annotations:4.1.1.4=runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.17.0=runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.code.gson:gson:2.10.1=runtimeClasspath +com.google.errorprone:error_prone_annotations:2.18.0=compileClasspath,runtimeClasspath +com.google.guava:failureaccess:1.0.1=compileClasspath,runtimeClasspath +com.google.guava:guava-parent:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:guava:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,runtimeClasspath +com.google.inject:guice:6.0.0=compileClasspath,runtimeClasspath +com.google.j2objc:j2objc-annotations:2.8=compileClasspath +com.google.protobuf:protobuf-java:3.24.1=runtimeClasspath +com.graphql-java-kickstart:graphql-java-kickstart:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java-kickstart:graphql-java-servlet:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java-extended-scalars:17.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java:19.6=compileClasspath,runtimeClasspath +com.graphql-java:java-dataloader:3.2.0=compileClasspath,runtimeClasspath +io.github.graphql-java:graphql-java-annotations:9.1=compileClasspath,runtimeClasspath +io.grpc:grpc-api:1.57.2=runtimeClasspath +io.grpc:grpc-bom:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-context:1.57.2=runtimeClasspath +io.grpc:grpc-core:1.57.2=runtimeClasspath +io.grpc:grpc-protobuf-lite:1.57.2=runtimeClasspath +io.grpc:grpc-protobuf:1.57.2=runtimeClasspath +io.grpc:grpc-stub:1.57.2=runtimeClasspath +io.netty:netty-bom:4.1.100.Final=runtimeClasspath +io.perfmark:perfmark-api:0.26.0=runtimeClasspath +io.reactivex.rxjava3:rxjava:3.1.7=compileClasspath,runtimeClasspath +jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath +javax.annotation:javax.annotation-api:1.3.2=runtimeClasspath +javax.inject:javax.inject:1=compileClasspath,runtimeClasspath +javax.servlet:javax.servlet-api:4.0.1=compileClasspath,runtimeClasspath +javax.validation:validation-api:1.1.0.Final=compileClasspath,runtimeClasspath +javax.websocket:javax.websocket-api:1.1=compileClasspath,runtimeClasspath +org.checkerframework:checker-qual:3.33.0=compileClasspath,runtimeClasspath +org.codehaus.mojo:animal-sniffer-annotations:1.23=runtimeClasspath +org.hypertrace.bom:hypertrace-bom:0.2.11=compileClasspath,runtimeClasspath +org.hypertrace.core.attribute.service:attribute-service-api:0.14.35=runtimeClasspath +org.hypertrace.core.attribute.service:caching-attribute-service-client:0.14.35=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-rx-utils:0.12.6=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-utils:0.12.6=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-context-utils:0.12.6=runtimeClasspath +org.hypertrace.core.kafkastreams.framework:kafka-bom:0.3.9=compileClasspath,runtimeClasspath +org.reactivestreams:reactive-streams:1.0.4=compileClasspath,runtimeClasspath +org.slf4j:slf4j-api:2.0.7=compileClasspath,runtimeClasspath +empty=annotationProcessor diff --git a/hypertrace-graphql-entity-schema/build.gradle.kts b/hypertrace-graphql-entity-schema/build.gradle.kts index f9d62183..7a429bb2 100644 --- a/hypertrace-graphql-entity-schema/build.gradle.kts +++ b/hypertrace-graphql-entity-schema/build.gradle.kts @@ -1,43 +1,41 @@ plugins { `java-library` jacoco - id("org.hypertrace.jacoco-report-plugin") + alias(commonLibs.plugins.hypertrace.jacoco) } dependencies { - api("com.google.inject:guice") - api("com.graphql-java:graphql-java") - api("org.hypertrace.core.graphql:hypertrace-core-graphql-spi") - api("io.github.graphql-java:graphql-java-annotations") - api(project(":hypertrace-graphql-metric-schema")) - api("org.hypertrace.core.graphql:hypertrace-core-graphql-common-schema") - - annotationProcessor("org.projectlombok:lombok") - compileOnly("org.projectlombok:lombok") - compileOnly(project(":hypertrace-graphql-attribute-scope")) - - implementation("org.slf4j:slf4j-api") - implementation("io.reactivex.rxjava3:rxjava") - implementation("org.hypertrace.gateway.service:gateway-service-api") - implementation("com.google.protobuf:protobuf-java-util") - implementation("com.google.guava:guava") - - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-context") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-grpc-utils") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-schema-utils") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-attribute-store") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-deserialization") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-rx-utils") - - implementation("org.hypertrace.core.grpcutils:grpc-client-utils") - - implementation(project(":hypertrace-graphql-labels-schema-api")) - - testImplementation("org.junit.jupiter:junit-jupiter") - testImplementation("org.mockito:mockito-core") - testImplementation("org.mockito:mockito-junit-jupiter") - testAnnotationProcessor("org.projectlombok:lombok") - testCompileOnly("org.projectlombok:lombok") + api(commonLibs.guice) + api(commonLibs.graphql.java) + api(localLibs.core.spi) + api(localLibs.graphql.annotations) + api(projects.hypertraceGraphqlMetricSchema) + api(localLibs.core.schema.common) + + annotationProcessor(commonLibs.lombok) + compileOnly(commonLibs.lombok) + compileOnly(projects.hypertraceGraphqlAttributeScope) + + implementation(commonLibs.slf4j2.api) + implementation(commonLibs.rxjava3) + implementation(commonLibs.hypertrace.gatewayservice.api) + implementation(commonLibs.protobuf.javautil) + implementation(commonLibs.guava) + implementation(commonLibs.hypertrace.grpcutils.client) + implementation(projects.hypertraceGraphqlLabelsSchemaApi) + + implementation(localLibs.core.context) + implementation(localLibs.core.grpc) + implementation(localLibs.core.schema.utils) + implementation(localLibs.core.attribute.store) + implementation(localLibs.core.deserialization) + implementation(localLibs.core.rxutils) + + testImplementation(commonLibs.junit.jupiter) + testImplementation(commonLibs.mockito.core) + testImplementation(commonLibs.mockito.junit) + testAnnotationProcessor(commonLibs.lombok) + testCompileOnly(commonLibs.lombok) } tasks.test { diff --git a/hypertrace-graphql-entity-schema/gradle.lockfile b/hypertrace-graphql-entity-schema/gradle.lockfile new file mode 100644 index 00000000..19cc32aa --- /dev/null +++ b/hypertrace-graphql-entity-schema/gradle.lockfile @@ -0,0 +1,62 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +aopalliance:aopalliance:1.0=compileClasspath,runtimeClasspath +com.auth0:java-jwt:4.4.0=runtimeClasspath +com.auth0:jwks-rsa:0.22.0=runtimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.15.2=runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.15.2=compileClasspath,runtimeClasspath +com.google.android:annotations:4.1.1.4=runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.17.0=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.code.gson:gson:2.10.1=runtimeClasspath +com.google.code.gson:gson:2.8.9=compileClasspath +com.google.errorprone:error_prone_annotations:2.18.0=compileClasspath,runtimeClasspath +com.google.guava:failureaccess:1.0.1=compileClasspath,runtimeClasspath +com.google.guava:guava-parent:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:guava:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,runtimeClasspath +com.google.inject:guice:6.0.0=compileClasspath,runtimeClasspath +com.google.j2objc:j2objc-annotations:2.8=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java-util:3.24.1=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.24.1=compileClasspath,runtimeClasspath +com.graphql-java-kickstart:graphql-java-kickstart:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java-kickstart:graphql-java-servlet:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java-extended-scalars:17.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java:19.6=compileClasspath,runtimeClasspath +com.graphql-java:java-dataloader:3.2.0=compileClasspath,runtimeClasspath +io.github.graphql-java:graphql-java-annotations:9.1=compileClasspath,runtimeClasspath +io.grpc:grpc-api:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-bom:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-context:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-core:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-protobuf-lite:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-protobuf:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-stub:1.57.2=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.100.Final=compileClasspath,runtimeClasspath +io.perfmark:perfmark-api:0.26.0=runtimeClasspath +io.reactivex.rxjava3:rxjava:3.1.7=compileClasspath,runtimeClasspath +jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath +javax.annotation:javax.annotation-api:1.3.2=compileClasspath,runtimeClasspath +javax.inject:javax.inject:1=compileClasspath,runtimeClasspath +javax.servlet:javax.servlet-api:4.0.1=compileClasspath,runtimeClasspath +javax.validation:validation-api:1.1.0.Final=compileClasspath,runtimeClasspath +javax.websocket:javax.websocket-api:1.1=compileClasspath,runtimeClasspath +org.checkerframework:checker-qual:3.33.0=compileClasspath,runtimeClasspath +org.codehaus.mojo:animal-sniffer-annotations:1.23=runtimeClasspath +org.hypertrace.bom:hypertrace-bom:0.2.11=compileClasspath,runtimeClasspath +org.hypertrace.core.attribute.service:attribute-service-api:0.14.35=runtimeClasspath +org.hypertrace.core.attribute.service:caching-attribute-service-client:0.14.35=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-rx-utils:0.12.6=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-utils:0.12.6=compileClasspath,runtimeClasspath +org.hypertrace.core.grpcutils:grpc-context-utils:0.12.6=compileClasspath,runtimeClasspath +org.hypertrace.core.kafkastreams.framework:kafka-bom:0.3.9=compileClasspath,runtimeClasspath +org.hypertrace.gateway.service:gateway-service-api:0.3.9=compileClasspath,runtimeClasspath +org.projectlombok:lombok:1.18.28=annotationProcessor,compileClasspath +org.reactivestreams:reactive-streams:1.0.4=compileClasspath,runtimeClasspath +org.slf4j:slf4j-api:2.0.7=compileClasspath,runtimeClasspath +empty= diff --git a/hypertrace-graphql-entity-type/build.gradle.kts b/hypertrace-graphql-entity-type/build.gradle.kts index 26b87e7b..cf576a61 100644 --- a/hypertrace-graphql-entity-type/build.gradle.kts +++ b/hypertrace-graphql-entity-type/build.gradle.kts @@ -3,14 +3,14 @@ plugins { } dependencies { - api("com.google.inject:guice") - api("io.reactivex.rxjava3:rxjava") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-attribute-store") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-common-schema") - implementation("org.hypertrace.entity.service:entity-type-service-rx-client") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-grpc-utils") - implementation(project(":hypertrace-graphql-entity-schema")) - implementation(project(":hypertrace-graphql-service-config")) + api(commonLibs.guice) + api(commonLibs.rxjava3) + implementation(localLibs.core.attribute.store) + implementation(localLibs.core.schema.common) + implementation(commonLibs.hypertrace.entityservice.types.rxclient) + implementation(localLibs.core.grpc) + implementation(projects.hypertraceGraphqlEntitySchema) + implementation(projects.hypertraceGraphqlServiceConfig) - compileOnly(project(":hypertrace-graphql-attribute-scope")) + compileOnly(projects.hypertraceGraphqlAttributeScope) } diff --git a/hypertrace-graphql-entity-type/gradle.lockfile b/hypertrace-graphql-entity-type/gradle.lockfile new file mode 100644 index 00000000..07f2fa91 --- /dev/null +++ b/hypertrace-graphql-entity-type/gradle.lockfile @@ -0,0 +1,62 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +aopalliance:aopalliance:1.0=compileClasspath,runtimeClasspath +com.auth0:java-jwt:4.4.0=runtimeClasspath +com.auth0:jwks-rsa:0.22.0=runtimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.15.2=runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.15.2=compileClasspath,runtimeClasspath +com.google.android:annotations:4.1.1.4=runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.17.0=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.code.gson:gson:2.10.1=runtimeClasspath +com.google.errorprone:error_prone_annotations:2.18.0=compileClasspath,runtimeClasspath +com.google.guava:failureaccess:1.0.1=compileClasspath,runtimeClasspath +com.google.guava:guava-parent:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:guava:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,runtimeClasspath +com.google.inject:guice:6.0.0=compileClasspath,runtimeClasspath +com.google.j2objc:j2objc-annotations:2.8=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java-util:3.24.1=runtimeClasspath +com.google.protobuf:protobuf-java:3.24.1=compileClasspath,runtimeClasspath +com.graphql-java-kickstart:graphql-java-kickstart:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java-kickstart:graphql-java-servlet:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java-extended-scalars:17.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java:19.6=compileClasspath,runtimeClasspath +com.graphql-java:java-dataloader:3.2.0=compileClasspath,runtimeClasspath +io.github.graphql-java:graphql-java-annotations:9.1=compileClasspath,runtimeClasspath +io.grpc:grpc-api:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-bom:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-context:1.57.2=runtimeClasspath +io.grpc:grpc-core:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-protobuf-lite:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-protobuf:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-stub:1.57.2=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.100.Final=runtimeClasspath +io.perfmark:perfmark-api:0.26.0=runtimeClasspath +io.reactivex.rxjava3:rxjava:3.1.7=compileClasspath,runtimeClasspath +jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath +javax.annotation:javax.annotation-api:1.3.2=compileClasspath,runtimeClasspath +javax.inject:javax.inject:1=compileClasspath,runtimeClasspath +javax.servlet:javax.servlet-api:4.0.1=compileClasspath,runtimeClasspath +javax.validation:validation-api:1.1.0.Final=compileClasspath,runtimeClasspath +javax.websocket:javax.websocket-api:1.1=compileClasspath,runtimeClasspath +org.checkerframework:checker-qual:3.33.0=compileClasspath,runtimeClasspath +org.codehaus.mojo:animal-sniffer-annotations:1.23=runtimeClasspath +org.hypertrace.bom:hypertrace-bom:0.2.11=compileClasspath,runtimeClasspath +org.hypertrace.core.attribute.service:attribute-service-api:0.14.35=runtimeClasspath +org.hypertrace.core.attribute.service:caching-attribute-service-client:0.14.35=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-rx-utils:0.12.6=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-utils:0.12.6=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-context-utils:0.12.6=compileClasspath,runtimeClasspath +org.hypertrace.core.kafkastreams.framework:kafka-bom:0.3.9=compileClasspath,runtimeClasspath +org.hypertrace.entity.service:entity-service-api:0.8.86=compileClasspath,runtimeClasspath +org.hypertrace.entity.service:entity-type-service-rx-client:0.8.86=compileClasspath,runtimeClasspath +org.hypertrace.gateway.service:gateway-service-api:0.3.9=runtimeClasspath +org.reactivestreams:reactive-streams:1.0.4=compileClasspath,runtimeClasspath +org.slf4j:slf4j-api:2.0.7=compileClasspath,runtimeClasspath +empty=annotationProcessor diff --git a/hypertrace-graphql-explorer-context/build.gradle.kts b/hypertrace-graphql-explorer-context/build.gradle.kts index f401408d..7f55c39c 100644 --- a/hypertrace-graphql-explorer-context/build.gradle.kts +++ b/hypertrace-graphql-explorer-context/build.gradle.kts @@ -3,11 +3,11 @@ plugins { } dependencies { - api("com.google.inject:guice") - api("io.reactivex.rxjava3:rxjava") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-attribute-store") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-common-schema") - implementation(project(":hypertrace-graphql-explorer-schema")) + api(commonLibs.guice) + api(commonLibs.rxjava3) + implementation(localLibs.core.attribute.store) + implementation(localLibs.core.schema.common) + implementation(projects.hypertraceGraphqlExplorerSchema) - compileOnly(project(":hypertrace-graphql-attribute-scope")) + compileOnly(projects.hypertraceGraphqlAttributeScope) } diff --git a/hypertrace-graphql-explorer-context/gradle.lockfile b/hypertrace-graphql-explorer-context/gradle.lockfile new file mode 100644 index 00000000..d2c4eec7 --- /dev/null +++ b/hypertrace-graphql-explorer-context/gradle.lockfile @@ -0,0 +1,60 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +aopalliance:aopalliance:1.0=compileClasspath,runtimeClasspath +com.auth0:java-jwt:4.4.0=runtimeClasspath +com.auth0:jwks-rsa:0.22.0=runtimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.15.2=runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.15.2=compileClasspath,runtimeClasspath +com.google.android:annotations:4.1.1.4=runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.17.0=runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.code.gson:gson:2.10.1=runtimeClasspath +com.google.errorprone:error_prone_annotations:2.18.0=compileClasspath,runtimeClasspath +com.google.guava:failureaccess:1.0.1=compileClasspath,runtimeClasspath +com.google.guava:guava-parent:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:guava:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,runtimeClasspath +com.google.inject:guice:6.0.0=compileClasspath,runtimeClasspath +com.google.j2objc:j2objc-annotations:2.8=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java-util:3.24.1=runtimeClasspath +com.google.protobuf:protobuf-java:3.24.1=runtimeClasspath +com.graphql-java-kickstart:graphql-java-kickstart:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java-kickstart:graphql-java-servlet:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java-extended-scalars:17.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java:19.6=compileClasspath,runtimeClasspath +com.graphql-java:java-dataloader:3.2.0=compileClasspath,runtimeClasspath +io.github.graphql-java:graphql-java-annotations:9.1=compileClasspath,runtimeClasspath +io.grpc:grpc-api:1.57.2=runtimeClasspath +io.grpc:grpc-bom:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-context:1.57.2=runtimeClasspath +io.grpc:grpc-core:1.57.2=runtimeClasspath +io.grpc:grpc-protobuf-lite:1.57.2=runtimeClasspath +io.grpc:grpc-protobuf:1.57.2=runtimeClasspath +io.grpc:grpc-stub:1.57.2=runtimeClasspath +io.netty:netty-bom:4.1.100.Final=runtimeClasspath +io.perfmark:perfmark-api:0.26.0=runtimeClasspath +io.reactivex.rxjava3:rxjava:3.1.7=compileClasspath,runtimeClasspath +jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath +javax.annotation:javax.annotation-api:1.3.2=runtimeClasspath +javax.inject:javax.inject:1=compileClasspath,runtimeClasspath +javax.servlet:javax.servlet-api:4.0.1=compileClasspath,runtimeClasspath +javax.validation:validation-api:1.1.0.Final=compileClasspath,runtimeClasspath +javax.websocket:javax.websocket-api:1.1=compileClasspath,runtimeClasspath +org.checkerframework:checker-qual:3.33.0=compileClasspath,runtimeClasspath +org.codehaus.mojo:animal-sniffer-annotations:1.23=runtimeClasspath +org.hypertrace.bom:hypertrace-bom:0.2.11=compileClasspath,runtimeClasspath +org.hypertrace.core.attribute.service:attribute-service-api:0.14.35=runtimeClasspath +org.hypertrace.core.attribute.service:caching-attribute-service-client:0.14.35=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-rx-utils:0.12.6=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-utils:0.12.6=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-context-utils:0.12.6=runtimeClasspath +org.hypertrace.core.kafkastreams.framework:kafka-bom:0.3.9=compileClasspath,runtimeClasspath +org.hypertrace.gateway.service:gateway-service-api:0.3.9=runtimeClasspath +org.reactivestreams:reactive-streams:1.0.4=compileClasspath,runtimeClasspath +org.slf4j:slf4j-api:2.0.7=compileClasspath,runtimeClasspath +empty=annotationProcessor diff --git a/hypertrace-graphql-explorer-schema/build.gradle.kts b/hypertrace-graphql-explorer-schema/build.gradle.kts index de71e57a..ae1d26ac 100644 --- a/hypertrace-graphql-explorer-schema/build.gradle.kts +++ b/hypertrace-graphql-explorer-schema/build.gradle.kts @@ -1,36 +1,36 @@ plugins { `java-library` jacoco - id("org.hypertrace.jacoco-report-plugin") + alias(commonLibs.plugins.hypertrace.jacoco) } dependencies { - api("com.google.inject:guice") - api("com.graphql-java:graphql-java") - api("org.hypertrace.core.graphql:hypertrace-core-graphql-spi") - api("io.github.graphql-java:graphql-java-annotations") - api(project(":hypertrace-graphql-metric-schema")) + api(commonLibs.guice) + api(commonLibs.graphql.java) + api(localLibs.core.spi) + api(localLibs.graphql.annotations) + api(projects.hypertraceGraphqlMetricSchema) - annotationProcessor("org.projectlombok:lombok") - compileOnly("org.projectlombok:lombok") + annotationProcessor(commonLibs.lombok) + compileOnly(commonLibs.lombok) - implementation("org.slf4j:slf4j-api") - implementation("io.reactivex.rxjava3:rxjava") - implementation("org.hypertrace.gateway.service:gateway-service-api") - implementation("com.google.protobuf:protobuf-java-util") + implementation(commonLibs.slf4j2.api) + implementation(commonLibs.rxjava3) + implementation(commonLibs.hypertrace.gatewayservice.api) + implementation(commonLibs.protobuf.javautil) - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-context") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-grpc-utils") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-common-schema") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-attribute-store") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-deserialization") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-schema-utils") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-rx-utils") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-request-transformation") + implementation(localLibs.core.context) + implementation(localLibs.core.grpc) + implementation(localLibs.core.schema.common) + implementation(localLibs.core.attribute.store) + implementation(localLibs.core.deserialization) + implementation(localLibs.core.schema.utils) + implementation(localLibs.core.rxutils) + implementation(localLibs.core.request.transformation) - testImplementation("org.junit.jupiter:junit-jupiter") - testImplementation("org.mockito:mockito-core") - testImplementation("org.mockito:mockito-junit-jupiter") + testImplementation(commonLibs.junit.jupiter) + testImplementation(commonLibs.mockito.core) + testImplementation(commonLibs.mockito.junit) } tasks.test { diff --git a/hypertrace-graphql-explorer-schema/gradle.lockfile b/hypertrace-graphql-explorer-schema/gradle.lockfile new file mode 100644 index 00000000..2a7d67a8 --- /dev/null +++ b/hypertrace-graphql-explorer-schema/gradle.lockfile @@ -0,0 +1,62 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +aopalliance:aopalliance:1.0=compileClasspath,runtimeClasspath +com.auth0:java-jwt:4.4.0=runtimeClasspath +com.auth0:jwks-rsa:0.22.0=runtimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.15.2=runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.15.2=compileClasspath,runtimeClasspath +com.google.android:annotations:4.1.1.4=runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.17.0=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.code.gson:gson:2.10.1=runtimeClasspath +com.google.code.gson:gson:2.8.9=compileClasspath +com.google.errorprone:error_prone_annotations:2.18.0=compileClasspath,runtimeClasspath +com.google.guava:failureaccess:1.0.1=compileClasspath,runtimeClasspath +com.google.guava:guava-parent:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:guava:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,runtimeClasspath +com.google.inject:guice:6.0.0=compileClasspath,runtimeClasspath +com.google.j2objc:j2objc-annotations:2.8=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java-util:3.24.1=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.24.1=compileClasspath,runtimeClasspath +com.graphql-java-kickstart:graphql-java-kickstart:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java-kickstart:graphql-java-servlet:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java-extended-scalars:17.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java:19.6=compileClasspath,runtimeClasspath +com.graphql-java:java-dataloader:3.2.0=compileClasspath,runtimeClasspath +io.github.graphql-java:graphql-java-annotations:9.1=compileClasspath,runtimeClasspath +io.grpc:grpc-api:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-bom:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-context:1.57.2=runtimeClasspath +io.grpc:grpc-core:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-protobuf-lite:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-protobuf:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-stub:1.57.2=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.100.Final=runtimeClasspath +io.perfmark:perfmark-api:0.26.0=runtimeClasspath +io.reactivex.rxjava3:rxjava:3.1.7=compileClasspath,runtimeClasspath +jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath +javax.annotation:javax.annotation-api:1.3.2=compileClasspath,runtimeClasspath +javax.inject:javax.inject:1=compileClasspath,runtimeClasspath +javax.servlet:javax.servlet-api:4.0.1=compileClasspath,runtimeClasspath +javax.validation:validation-api:1.1.0.Final=compileClasspath,runtimeClasspath +javax.websocket:javax.websocket-api:1.1=compileClasspath,runtimeClasspath +org.checkerframework:checker-qual:3.33.0=compileClasspath,runtimeClasspath +org.codehaus.mojo:animal-sniffer-annotations:1.23=runtimeClasspath +org.hypertrace.bom:hypertrace-bom:0.2.11=compileClasspath,runtimeClasspath +org.hypertrace.core.attribute.service:attribute-service-api:0.14.35=runtimeClasspath +org.hypertrace.core.attribute.service:caching-attribute-service-client:0.14.35=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-rx-utils:0.12.6=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-utils:0.12.6=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-context-utils:0.12.6=compileClasspath,runtimeClasspath +org.hypertrace.core.kafkastreams.framework:kafka-bom:0.3.9=compileClasspath,runtimeClasspath +org.hypertrace.gateway.service:gateway-service-api:0.3.9=compileClasspath,runtimeClasspath +org.projectlombok:lombok:1.18.28=annotationProcessor,compileClasspath +org.reactivestreams:reactive-streams:1.0.4=compileClasspath,runtimeClasspath +org.slf4j:slf4j-api:2.0.7=compileClasspath,runtimeClasspath +empty= diff --git a/hypertrace-graphql-gateway-service-metric-utils/build.gradle.kts b/hypertrace-graphql-gateway-service-metric-utils/build.gradle.kts index 68be2964..3795d529 100644 --- a/hypertrace-graphql-gateway-service-metric-utils/build.gradle.kts +++ b/hypertrace-graphql-gateway-service-metric-utils/build.gradle.kts @@ -3,14 +3,14 @@ plugins { } dependencies { - api("com.google.inject:guice") - api("org.hypertrace.gateway.service:gateway-service-api") - api("org.hypertrace.core.graphql:hypertrace-core-graphql-attribute-store") - api("io.reactivex.rxjava3:rxjava") - api("org.hypertrace.core.graphql:hypertrace-core-graphql-common-schema") - api(project(":hypertrace-graphql-metric-schema")) - api("org.hypertrace.core.graphql:hypertrace-core-graphql-gateway-service-utils") + api(commonLibs.guice) + api(commonLibs.hypertrace.gatewayservice.api) + api(localLibs.core.attribute.store) + api(commonLibs.rxjava3) + api(localLibs.core.schema.common) + api(projects.hypertraceGraphqlMetricSchema) + api(localLibs.core.gateway.utils) - annotationProcessor("org.projectlombok:lombok") - compileOnly("org.projectlombok:lombok") + annotationProcessor(commonLibs.lombok) + compileOnly(commonLibs.lombok) } diff --git a/hypertrace-graphql-gateway-service-metric-utils/gradle.lockfile b/hypertrace-graphql-gateway-service-metric-utils/gradle.lockfile new file mode 100644 index 00000000..ba5403ce --- /dev/null +++ b/hypertrace-graphql-gateway-service-metric-utils/gradle.lockfile @@ -0,0 +1,60 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +aopalliance:aopalliance:1.0=compileClasspath,runtimeClasspath +com.auth0:java-jwt:4.4.0=runtimeClasspath +com.auth0:jwks-rsa:0.22.0=runtimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.15.2=runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.15.2=compileClasspath,runtimeClasspath +com.google.android:annotations:4.1.1.4=runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.17.0=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.code.gson:gson:2.10.1=runtimeClasspath +com.google.errorprone:error_prone_annotations:2.18.0=compileClasspath,runtimeClasspath +com.google.guava:failureaccess:1.0.1=compileClasspath,runtimeClasspath +com.google.guava:guava-parent:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:guava:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,runtimeClasspath +com.google.inject:guice:6.0.0=compileClasspath,runtimeClasspath +com.google.j2objc:j2objc-annotations:2.8=compileClasspath +com.google.protobuf:protobuf-java:3.24.1=compileClasspath,runtimeClasspath +com.graphql-java-kickstart:graphql-java-kickstart:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java-kickstart:graphql-java-servlet:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java-extended-scalars:17.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java:19.6=compileClasspath,runtimeClasspath +com.graphql-java:java-dataloader:3.2.0=compileClasspath,runtimeClasspath +io.github.graphql-java:graphql-java-annotations:9.1=compileClasspath,runtimeClasspath +io.grpc:grpc-api:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-bom:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-context:1.57.2=runtimeClasspath +io.grpc:grpc-core:1.57.2=runtimeClasspath +io.grpc:grpc-protobuf-lite:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-protobuf:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-stub:1.57.2=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.100.Final=runtimeClasspath +io.perfmark:perfmark-api:0.26.0=runtimeClasspath +io.reactivex.rxjava3:rxjava:3.1.7=compileClasspath,runtimeClasspath +jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath +javax.annotation:javax.annotation-api:1.3.2=compileClasspath,runtimeClasspath +javax.inject:javax.inject:1=compileClasspath,runtimeClasspath +javax.servlet:javax.servlet-api:4.0.1=compileClasspath,runtimeClasspath +javax.validation:validation-api:1.1.0.Final=compileClasspath,runtimeClasspath +javax.websocket:javax.websocket-api:1.1=compileClasspath,runtimeClasspath +org.checkerframework:checker-qual:3.33.0=compileClasspath,runtimeClasspath +org.codehaus.mojo:animal-sniffer-annotations:1.23=runtimeClasspath +org.hypertrace.bom:hypertrace-bom:0.2.11=compileClasspath,runtimeClasspath +org.hypertrace.core.attribute.service:attribute-service-api:0.14.35=runtimeClasspath +org.hypertrace.core.attribute.service:caching-attribute-service-client:0.14.35=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-rx-utils:0.12.6=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-utils:0.12.6=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-context-utils:0.12.6=runtimeClasspath +org.hypertrace.core.kafkastreams.framework:kafka-bom:0.3.9=compileClasspath,runtimeClasspath +org.hypertrace.gateway.service:gateway-service-api:0.3.9=compileClasspath,runtimeClasspath +org.projectlombok:lombok:1.18.28=annotationProcessor,compileClasspath +org.reactivestreams:reactive-streams:1.0.4=compileClasspath,runtimeClasspath +org.slf4j:slf4j-api:2.0.7=compileClasspath,runtimeClasspath +empty= diff --git a/hypertrace-graphql-impl/build.gradle.kts b/hypertrace-graphql-impl/build.gradle.kts index 1d1d1ae5..53ba678f 100644 --- a/hypertrace-graphql-impl/build.gradle.kts +++ b/hypertrace-graphql-impl/build.gradle.kts @@ -1,46 +1,46 @@ plugins { `java-library` jacoco - id("org.hypertrace.jacoco-report-plugin") + alias(commonLibs.plugins.hypertrace.jacoco) } dependencies { - api("org.hypertrace.core.graphql:hypertrace-core-graphql-spi") - api("com.graphql-java-kickstart:graphql-java-servlet") - api(project(":hypertrace-graphql-service-config")) - api("org.hypertrace.core.grpcutils:grpc-client-utils") + api(localLibs.core.spi) + api(localLibs.graphql.servlet) + api(projects.hypertraceGraphqlServiceConfig) + api(commonLibs.hypertrace.grpcutils.client) - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-schema-registry") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-context") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-deserialization") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-grpc-utils") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-schema-utils") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-gateway-service-utils") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-rx-utils") - implementation(project(":hypertrace-graphql-attribute-scope")) - implementation(project(":hypertrace-graphql-gateway-service-metric-utils")) - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-attribute-store") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-common-schema") - implementation(project(":hypertrace-graphql-metric-schema")) - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-metadata-schema") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-span-schema") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-log-event-schema") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-trace-schema") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-request-transformation") - implementation(project(":hypertrace-graphql-entity-schema")) - implementation(project(":hypertrace-graphql-explorer-schema")) - implementation(project(":hypertrace-graphql-explorer-context")) - implementation(project(":hypertrace-graphql-entity-type")) - implementation(project(":hypertrace-graphql-spaces-schema")) - implementation(project(":hypertrace-graphql-labels-schema-impl")) - implementation(project(":hypertrace-graphql-span-processing-schema")) + implementation(localLibs.core.schema.registry) + implementation(localLibs.core.context) + implementation(localLibs.core.deserialization) + implementation(localLibs.core.grpc) + implementation(localLibs.core.schema.utils) + implementation(localLibs.core.gateway.utils) + implementation(localLibs.core.rxutils) + implementation(projects.hypertraceGraphqlAttributeScope) + implementation(projects.hypertraceGraphqlGatewayServiceMetricUtils) + implementation(localLibs.core.attribute.store) + implementation(localLibs.core.schema.common) + implementation(projects.hypertraceGraphqlMetricSchema) + implementation(localLibs.core.schema.metadata) + implementation(localLibs.core.schema.spans) + implementation(localLibs.core.schema.logevents) + implementation(localLibs.core.schema.traces) + implementation(localLibs.core.request.transformation) + implementation(projects.hypertraceGraphqlEntitySchema) + implementation(projects.hypertraceGraphqlExplorerSchema) + implementation(projects.hypertraceGraphqlExplorerContext) + implementation(projects.hypertraceGraphqlEntityType) + implementation(projects.hypertraceGraphqlSpacesSchema) + implementation(projects.hypertraceGraphqlLabelsSchemaImpl) + implementation(projects.hypertraceGraphqlSpanProcessingSchema) - implementation("org.slf4j:slf4j-api") - implementation("com.google.inject:guice") + implementation(commonLibs.slf4j2.api) + implementation(commonLibs.guice) - testImplementation("org.junit.jupiter:junit-jupiter") - testImplementation("org.mockito:mockito-core") - testImplementation("org.mockito:mockito-junit-jupiter") + testImplementation(commonLibs.junit.jupiter) + testImplementation(commonLibs.mockito.core) + testImplementation(commonLibs.mockito.junit) } tasks.test { diff --git a/hypertrace-graphql-impl/gradle.lockfile b/hypertrace-graphql-impl/gradle.lockfile new file mode 100644 index 00000000..f49bb40e --- /dev/null +++ b/hypertrace-graphql-impl/gradle.lockfile @@ -0,0 +1,69 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +aopalliance:aopalliance:1.0=compileClasspath,runtimeClasspath +com.auth0:java-jwt:4.4.0=runtimeClasspath +com.auth0:jwks-rsa:0.22.0=runtimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.15.2=runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.15.2=compileClasspath,runtimeClasspath +com.google.android:annotations:4.1.1.4=runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.17.0=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.code.gson:gson:2.10.1=runtimeClasspath +com.google.errorprone:error_prone_annotations:2.18.0=compileClasspath,runtimeClasspath +com.google.guava:failureaccess:1.0.1=compileClasspath,runtimeClasspath +com.google.guava:guava-parent:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:guava:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,runtimeClasspath +com.google.inject:guice:6.0.0=compileClasspath,runtimeClasspath +com.google.j2objc:j2objc-annotations:2.8=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java-util:3.24.1=runtimeClasspath +com.google.protobuf:protobuf-java:3.24.1=compileClasspath,runtimeClasspath +com.graphql-java-kickstart:graphql-java-kickstart:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java-kickstart:graphql-java-servlet:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java-extended-scalars:17.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java:19.6=compileClasspath,runtimeClasspath +com.graphql-java:java-dataloader:3.2.0=compileClasspath,runtimeClasspath +io.github.graphql-java:graphql-java-annotations:9.1=compileClasspath,runtimeClasspath +io.grpc:grpc-api:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-bom:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-context:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-core:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-protobuf-lite:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-protobuf:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-stub:1.57.2=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.100.Final=compileClasspath,runtimeClasspath +io.opentelemetry:opentelemetry-proto:1.1.0-alpha=runtimeClasspath +io.perfmark:perfmark-api:0.26.0=runtimeClasspath +io.reactivex.rxjava3:rxjava:3.1.7=compileClasspath,runtimeClasspath +jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath +javax.annotation:javax.annotation-api:1.3.2=compileClasspath,runtimeClasspath +javax.inject:javax.inject:1=compileClasspath,runtimeClasspath +javax.servlet:javax.servlet-api:4.0.1=compileClasspath,runtimeClasspath +javax.validation:validation-api:1.1.0.Final=compileClasspath,runtimeClasspath +javax.websocket:javax.websocket-api:1.1=compileClasspath,runtimeClasspath +org.apache.commons:commons-lang3:3.12.0=runtimeClasspath +org.apache.commons:commons-text:1.10.0=runtimeClasspath +org.checkerframework:checker-qual:3.33.0=compileClasspath,runtimeClasspath +org.codehaus.mojo:animal-sniffer-annotations:1.23=runtimeClasspath +org.hypertrace.bom:hypertrace-bom:0.2.11=compileClasspath,runtimeClasspath +org.hypertrace.config.service:label-application-rule-config-service-api:0.1.56=runtimeClasspath +org.hypertrace.config.service:labels-config-service-api:0.1.56=runtimeClasspath +org.hypertrace.config.service:spaces-config-service-api:0.1.56=runtimeClasspath +org.hypertrace.config.service:span-processing-config-service-api:0.1.56=runtimeClasspath +org.hypertrace.core.attribute.service:attribute-service-api:0.14.35=runtimeClasspath +org.hypertrace.core.attribute.service:caching-attribute-service-client:0.14.35=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-rx-utils:0.12.6=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-utils:0.12.6=compileClasspath,runtimeClasspath +org.hypertrace.core.grpcutils:grpc-context-utils:0.12.6=compileClasspath,runtimeClasspath +org.hypertrace.core.kafkastreams.framework:kafka-bom:0.3.9=compileClasspath,runtimeClasspath +org.hypertrace.entity.service:entity-service-api:0.8.86=runtimeClasspath +org.hypertrace.entity.service:entity-type-service-rx-client:0.8.86=runtimeClasspath +org.hypertrace.gateway.service:gateway-service-api:0.3.9=compileClasspath,runtimeClasspath +org.reactivestreams:reactive-streams:1.0.4=compileClasspath,runtimeClasspath +org.slf4j:slf4j-api:2.0.7=compileClasspath,runtimeClasspath +empty=annotationProcessor diff --git a/hypertrace-graphql-labels-schema-api/build.gradle.kts b/hypertrace-graphql-labels-schema-api/build.gradle.kts index 60951475..fc9ee448 100644 --- a/hypertrace-graphql-labels-schema-api/build.gradle.kts +++ b/hypertrace-graphql-labels-schema-api/build.gradle.kts @@ -1,20 +1,20 @@ plugins { `java-library` jacoco - id("org.hypertrace.jacoco-report-plugin") + alias(commonLibs.plugins.hypertrace.jacoco) } dependencies { - api("com.google.inject:guice") - api("com.graphql-java:graphql-java") - api("org.hypertrace.core.graphql:hypertrace-core-graphql-spi") - api("io.github.graphql-java:graphql-java-annotations") - api("org.hypertrace.core.graphql:hypertrace-core-graphql-common-schema") + api(commonLibs.guice) + api(commonLibs.graphql.java) + api(localLibs.core.spi) + api(localLibs.graphql.annotations) + api(localLibs.core.schema.common) - annotationProcessor("org.projectlombok:lombok") - compileOnly("org.projectlombok:lombok") + annotationProcessor(commonLibs.lombok) + compileOnly(commonLibs.lombok) - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-deserialization") + implementation(localLibs.core.deserialization) } tasks.test { diff --git a/hypertrace-graphql-labels-schema-api/gradle.lockfile b/hypertrace-graphql-labels-schema-api/gradle.lockfile new file mode 100644 index 00000000..f7b8840e --- /dev/null +++ b/hypertrace-graphql-labels-schema-api/gradle.lockfile @@ -0,0 +1,59 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +aopalliance:aopalliance:1.0=compileClasspath,runtimeClasspath +com.auth0:java-jwt:4.4.0=runtimeClasspath +com.auth0:jwks-rsa:0.22.0=runtimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.15.2=runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.15.2=compileClasspath,runtimeClasspath +com.google.android:annotations:4.1.1.4=runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.17.0=runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.code.gson:gson:2.10.1=runtimeClasspath +com.google.errorprone:error_prone_annotations:2.18.0=compileClasspath,runtimeClasspath +com.google.guava:failureaccess:1.0.1=compileClasspath,runtimeClasspath +com.google.guava:guava-parent:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:guava:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,runtimeClasspath +com.google.inject:guice:6.0.0=compileClasspath,runtimeClasspath +com.google.j2objc:j2objc-annotations:2.8=compileClasspath +com.google.protobuf:protobuf-java:3.24.1=runtimeClasspath +com.graphql-java-kickstart:graphql-java-kickstart:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java-kickstart:graphql-java-servlet:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java-extended-scalars:17.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java:19.6=compileClasspath,runtimeClasspath +com.graphql-java:java-dataloader:3.2.0=compileClasspath,runtimeClasspath +io.github.graphql-java:graphql-java-annotations:9.1=compileClasspath,runtimeClasspath +io.grpc:grpc-api:1.57.2=runtimeClasspath +io.grpc:grpc-bom:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-context:1.57.2=runtimeClasspath +io.grpc:grpc-core:1.57.2=runtimeClasspath +io.grpc:grpc-protobuf-lite:1.57.2=runtimeClasspath +io.grpc:grpc-protobuf:1.57.2=runtimeClasspath +io.grpc:grpc-stub:1.57.2=runtimeClasspath +io.netty:netty-bom:4.1.100.Final=runtimeClasspath +io.perfmark:perfmark-api:0.26.0=runtimeClasspath +io.reactivex.rxjava3:rxjava:3.1.7=compileClasspath,runtimeClasspath +jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath +javax.annotation:javax.annotation-api:1.3.2=runtimeClasspath +javax.inject:javax.inject:1=compileClasspath,runtimeClasspath +javax.servlet:javax.servlet-api:4.0.1=compileClasspath,runtimeClasspath +javax.validation:validation-api:1.1.0.Final=compileClasspath,runtimeClasspath +javax.websocket:javax.websocket-api:1.1=compileClasspath,runtimeClasspath +org.checkerframework:checker-qual:3.33.0=compileClasspath,runtimeClasspath +org.codehaus.mojo:animal-sniffer-annotations:1.23=runtimeClasspath +org.hypertrace.bom:hypertrace-bom:0.2.11=compileClasspath,runtimeClasspath +org.hypertrace.core.attribute.service:attribute-service-api:0.14.35=runtimeClasspath +org.hypertrace.core.attribute.service:caching-attribute-service-client:0.14.35=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-rx-utils:0.12.6=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-utils:0.12.6=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-context-utils:0.12.6=runtimeClasspath +org.hypertrace.core.kafkastreams.framework:kafka-bom:0.3.9=compileClasspath,runtimeClasspath +org.projectlombok:lombok:1.18.28=annotationProcessor,compileClasspath +org.reactivestreams:reactive-streams:1.0.4=compileClasspath,runtimeClasspath +org.slf4j:slf4j-api:2.0.7=compileClasspath,runtimeClasspath +empty= diff --git a/hypertrace-graphql-labels-schema-impl/build.gradle.kts b/hypertrace-graphql-labels-schema-impl/build.gradle.kts index 48b48c7c..aef62869 100644 --- a/hypertrace-graphql-labels-schema-impl/build.gradle.kts +++ b/hypertrace-graphql-labels-schema-impl/build.gradle.kts @@ -1,36 +1,35 @@ plugins { `java-library` jacoco - id("org.hypertrace.jacoco-report-plugin") + alias(commonLibs.plugins.hypertrace.jacoco) } dependencies { - api("com.google.inject:guice") - api("com.graphql-java:graphql-java") - api("org.hypertrace.core.graphql:hypertrace-core-graphql-spi") - api("io.github.graphql-java:graphql-java-annotations") - api("org.hypertrace.core.graphql:hypertrace-core-graphql-common-schema") - api(project(":hypertrace-graphql-labels-schema-api")) + api(commonLibs.guice) + api(commonLibs.graphql.java) + api(localLibs.core.spi) + api(localLibs.graphql.annotations) + api(localLibs.core.schema.common) + api(projects.hypertraceGraphqlLabelsSchemaApi) - annotationProcessor("org.projectlombok:lombok") - compileOnly("org.projectlombok:lombok") + annotationProcessor(commonLibs.lombok) + compileOnly(commonLibs.lombok) - implementation("org.slf4j:slf4j-api") - implementation("io.reactivex.rxjava3:rxjava") - implementation("org.hypertrace.config.service:labels-config-service-api") - implementation("org.hypertrace.config.service:label-application-rule-config-service-api") - implementation("com.google.protobuf:protobuf-java-util") - implementation("com.google.guava:guava") + implementation(commonLibs.slf4j2.api) + implementation(commonLibs.rxjava3) + implementation(commonLibs.hypertrace.configservice.labels.api) + implementation(commonLibs.hypertrace.configservice.labelapplication.api) + implementation(commonLibs.protobuf.javautil) + implementation(commonLibs.guava) - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-context") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-grpc-utils") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-schema-utils") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-rx-utils") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-deserialization") + implementation(localLibs.core.context) + implementation(localLibs.core.grpc) + implementation(localLibs.core.schema.utils) + implementation(localLibs.core.rxutils) + implementation(localLibs.core.deserialization) - implementation(project(":hypertrace-graphql-entity-schema")) - - implementation(project(":hypertrace-graphql-service-config")) + implementation(projects.hypertraceGraphqlEntitySchema) + implementation(projects.hypertraceGraphqlServiceConfig) } tasks.test { diff --git a/hypertrace-graphql-labels-schema-impl/gradle.lockfile b/hypertrace-graphql-labels-schema-impl/gradle.lockfile new file mode 100644 index 00000000..a6204268 --- /dev/null +++ b/hypertrace-graphql-labels-schema-impl/gradle.lockfile @@ -0,0 +1,64 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +aopalliance:aopalliance:1.0=compileClasspath,runtimeClasspath +com.auth0:java-jwt:4.4.0=runtimeClasspath +com.auth0:jwks-rsa:0.22.0=runtimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.15.2=runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.15.2=compileClasspath,runtimeClasspath +com.google.android:annotations:4.1.1.4=runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.17.0=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.code.gson:gson:2.10.1=runtimeClasspath +com.google.code.gson:gson:2.8.9=compileClasspath +com.google.errorprone:error_prone_annotations:2.18.0=compileClasspath,runtimeClasspath +com.google.guava:failureaccess:1.0.1=compileClasspath,runtimeClasspath +com.google.guava:guava-parent:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:guava:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,runtimeClasspath +com.google.inject:guice:6.0.0=compileClasspath,runtimeClasspath +com.google.j2objc:j2objc-annotations:2.8=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java-util:3.24.1=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.24.1=compileClasspath,runtimeClasspath +com.graphql-java-kickstart:graphql-java-kickstart:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java-kickstart:graphql-java-servlet:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java-extended-scalars:17.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java:19.6=compileClasspath,runtimeClasspath +com.graphql-java:java-dataloader:3.2.0=compileClasspath,runtimeClasspath +io.github.graphql-java:graphql-java-annotations:9.1=compileClasspath,runtimeClasspath +io.grpc:grpc-api:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-bom:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-context:1.57.2=runtimeClasspath +io.grpc:grpc-core:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-protobuf-lite:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-protobuf:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-stub:1.57.2=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.100.Final=runtimeClasspath +io.perfmark:perfmark-api:0.26.0=runtimeClasspath +io.reactivex.rxjava3:rxjava:3.1.7=compileClasspath,runtimeClasspath +jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath +javax.annotation:javax.annotation-api:1.3.2=compileClasspath,runtimeClasspath +javax.inject:javax.inject:1=compileClasspath,runtimeClasspath +javax.servlet:javax.servlet-api:4.0.1=compileClasspath,runtimeClasspath +javax.validation:validation-api:1.1.0.Final=compileClasspath,runtimeClasspath +javax.websocket:javax.websocket-api:1.1=compileClasspath,runtimeClasspath +org.checkerframework:checker-qual:3.33.0=compileClasspath,runtimeClasspath +org.codehaus.mojo:animal-sniffer-annotations:1.23=runtimeClasspath +org.hypertrace.bom:hypertrace-bom:0.2.11=compileClasspath,runtimeClasspath +org.hypertrace.config.service:label-application-rule-config-service-api:0.1.56=compileClasspath,runtimeClasspath +org.hypertrace.config.service:labels-config-service-api:0.1.56=compileClasspath,runtimeClasspath +org.hypertrace.core.attribute.service:attribute-service-api:0.14.35=runtimeClasspath +org.hypertrace.core.attribute.service:caching-attribute-service-client:0.14.35=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-rx-utils:0.12.6=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-utils:0.12.6=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-context-utils:0.12.6=compileClasspath,runtimeClasspath +org.hypertrace.core.kafkastreams.framework:kafka-bom:0.3.9=compileClasspath,runtimeClasspath +org.hypertrace.gateway.service:gateway-service-api:0.3.9=runtimeClasspath +org.projectlombok:lombok:1.18.28=annotationProcessor,compileClasspath +org.reactivestreams:reactive-streams:1.0.4=compileClasspath,runtimeClasspath +org.slf4j:slf4j-api:2.0.7=compileClasspath,runtimeClasspath +empty= diff --git a/hypertrace-graphql-metric-schema/build.gradle.kts b/hypertrace-graphql-metric-schema/build.gradle.kts index 6919f826..eb8319ea 100644 --- a/hypertrace-graphql-metric-schema/build.gradle.kts +++ b/hypertrace-graphql-metric-schema/build.gradle.kts @@ -3,17 +3,17 @@ plugins { } dependencies { - api("com.google.inject:guice") - api("com.graphql-java:graphql-java") - api("org.hypertrace.core.graphql:hypertrace-core-graphql-attribute-store") - api("org.hypertrace.core.graphql:hypertrace-core-graphql-context") - api("io.reactivex.rxjava3:rxjava") - api("io.github.graphql-java:graphql-java-annotations") + api(commonLibs.guice) + api(commonLibs.graphql.java) + api(localLibs.core.attribute.store) + api(localLibs.core.context) + api(commonLibs.rxjava3) + api(localLibs.graphql.annotations) - annotationProcessor("org.projectlombok:lombok") - compileOnly("org.projectlombok:lombok") + annotationProcessor(commonLibs.lombok) + compileOnly(commonLibs.lombok) - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-deserialization") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-schema-utils") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-common-schema") + implementation(localLibs.core.deserialization) + implementation(localLibs.core.schema.utils) + implementation(localLibs.core.schema.common) } diff --git a/hypertrace-graphql-metric-schema/gradle.lockfile b/hypertrace-graphql-metric-schema/gradle.lockfile new file mode 100644 index 00000000..f7b8840e --- /dev/null +++ b/hypertrace-graphql-metric-schema/gradle.lockfile @@ -0,0 +1,59 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +aopalliance:aopalliance:1.0=compileClasspath,runtimeClasspath +com.auth0:java-jwt:4.4.0=runtimeClasspath +com.auth0:jwks-rsa:0.22.0=runtimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.15.2=runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.15.2=compileClasspath,runtimeClasspath +com.google.android:annotations:4.1.1.4=runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.17.0=runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.code.gson:gson:2.10.1=runtimeClasspath +com.google.errorprone:error_prone_annotations:2.18.0=compileClasspath,runtimeClasspath +com.google.guava:failureaccess:1.0.1=compileClasspath,runtimeClasspath +com.google.guava:guava-parent:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:guava:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,runtimeClasspath +com.google.inject:guice:6.0.0=compileClasspath,runtimeClasspath +com.google.j2objc:j2objc-annotations:2.8=compileClasspath +com.google.protobuf:protobuf-java:3.24.1=runtimeClasspath +com.graphql-java-kickstart:graphql-java-kickstart:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java-kickstart:graphql-java-servlet:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java-extended-scalars:17.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java:19.6=compileClasspath,runtimeClasspath +com.graphql-java:java-dataloader:3.2.0=compileClasspath,runtimeClasspath +io.github.graphql-java:graphql-java-annotations:9.1=compileClasspath,runtimeClasspath +io.grpc:grpc-api:1.57.2=runtimeClasspath +io.grpc:grpc-bom:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-context:1.57.2=runtimeClasspath +io.grpc:grpc-core:1.57.2=runtimeClasspath +io.grpc:grpc-protobuf-lite:1.57.2=runtimeClasspath +io.grpc:grpc-protobuf:1.57.2=runtimeClasspath +io.grpc:grpc-stub:1.57.2=runtimeClasspath +io.netty:netty-bom:4.1.100.Final=runtimeClasspath +io.perfmark:perfmark-api:0.26.0=runtimeClasspath +io.reactivex.rxjava3:rxjava:3.1.7=compileClasspath,runtimeClasspath +jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath +javax.annotation:javax.annotation-api:1.3.2=runtimeClasspath +javax.inject:javax.inject:1=compileClasspath,runtimeClasspath +javax.servlet:javax.servlet-api:4.0.1=compileClasspath,runtimeClasspath +javax.validation:validation-api:1.1.0.Final=compileClasspath,runtimeClasspath +javax.websocket:javax.websocket-api:1.1=compileClasspath,runtimeClasspath +org.checkerframework:checker-qual:3.33.0=compileClasspath,runtimeClasspath +org.codehaus.mojo:animal-sniffer-annotations:1.23=runtimeClasspath +org.hypertrace.bom:hypertrace-bom:0.2.11=compileClasspath,runtimeClasspath +org.hypertrace.core.attribute.service:attribute-service-api:0.14.35=runtimeClasspath +org.hypertrace.core.attribute.service:caching-attribute-service-client:0.14.35=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-rx-utils:0.12.6=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-utils:0.12.6=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-context-utils:0.12.6=runtimeClasspath +org.hypertrace.core.kafkastreams.framework:kafka-bom:0.3.9=compileClasspath,runtimeClasspath +org.projectlombok:lombok:1.18.28=annotationProcessor,compileClasspath +org.reactivestreams:reactive-streams:1.0.4=compileClasspath,runtimeClasspath +org.slf4j:slf4j-api:2.0.7=compileClasspath,runtimeClasspath +empty= diff --git a/hypertrace-graphql-platform/build.gradle.kts b/hypertrace-graphql-platform/build.gradle.kts deleted file mode 100644 index c9fde202..00000000 --- a/hypertrace-graphql-platform/build.gradle.kts +++ /dev/null @@ -1,18 +0,0 @@ -plugins { - `java-platform` -} - -javaPlatform { - allowDependencies() -} - -dependencies { - api(platform("org.hypertrace.core.graphql:hypertrace-core-graphql-platform")) - constraints { - api("org.hypertrace.entity.service:entity-type-service-rx-client:0.5.6") - api("org.hypertrace.config.service:spaces-config-service-api:0.1.1") - api("org.hypertrace.config.service:labels-config-service-api:0.1.15") - api("org.hypertrace.config.service:label-application-rule-config-service-api:0.1.52") - api("org.hypertrace.config.service:span-processing-config-service-api:0.1.54") - } -} diff --git a/hypertrace-graphql-service-config/build.gradle.kts b/hypertrace-graphql-service-config/build.gradle.kts index 7d85c46e..238e72c7 100644 --- a/hypertrace-graphql-service-config/build.gradle.kts +++ b/hypertrace-graphql-service-config/build.gradle.kts @@ -3,5 +3,5 @@ plugins { } dependencies { - api("org.hypertrace.core.graphql:hypertrace-core-graphql-spi") + api(localLibs.core.spi) } diff --git a/hypertrace-graphql-service-config/gradle.lockfile b/hypertrace-graphql-service-config/gradle.lockfile new file mode 100644 index 00000000..7b3468c3 --- /dev/null +++ b/hypertrace-graphql-service-config/gradle.lockfile @@ -0,0 +1,16 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.15.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java-extended-scalars:17.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java:19.6=compileClasspath,runtimeClasspath +com.graphql-java:java-dataloader:3.2.0=compileClasspath,runtimeClasspath +io.github.graphql-java:graphql-java-annotations:9.1=compileClasspath,runtimeClasspath +io.grpc:grpc-bom:1.57.2=compileClasspath,runtimeClasspath +javax.validation:validation-api:1.1.0.Final=compileClasspath,runtimeClasspath +org.hypertrace.bom:hypertrace-bom:0.2.11=compileClasspath,runtimeClasspath +org.hypertrace.core.kafkastreams.framework:kafka-bom:0.3.9=compileClasspath,runtimeClasspath +org.reactivestreams:reactive-streams:1.0.3=compileClasspath,runtimeClasspath +org.slf4j:slf4j-api:2.0.7=compileClasspath,runtimeClasspath +empty=annotationProcessor diff --git a/hypertrace-graphql-service/build.gradle.kts b/hypertrace-graphql-service/build.gradle.kts index d7017577..702f2eb2 100644 --- a/hypertrace-graphql-service/build.gradle.kts +++ b/hypertrace-graphql-service/build.gradle.kts @@ -1,29 +1,23 @@ plugins { java application - id("org.hypertrace.docker-java-application-plugin") - id("org.hypertrace.docker-publish-plugin") + alias(commonLibs.plugins.hypertrace.docker.application) + alias(commonLibs.plugins.hypertrace.docker.publish) } dependencies { - implementation("com.typesafe:config") - implementation("org.hypertrace.core.serviceframework:platform-service-framework:0.1.52") - implementation("org.slf4j:slf4j-api") - - implementation("org.hypertrace.core.serviceframework:platform-http-service-framework:0.1.52") - - implementation("com.graphql-java-kickstart:graphql-java-servlet") - implementation(project(":hypertrace-graphql-impl")) - implementation(project(":hypertrace-graphql-service-config")) - - annotationProcessor("org.projectlombok:lombok") - compileOnly("org.projectlombok:lombok") - - runtimeOnly("io.grpc:grpc-netty") - runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl") - - annotationProcessor(platform(project(":hypertrace-graphql-platform"))) - compileOnly(platform(project(":hypertrace-graphql-platform"))) + implementation(commonLibs.typesafe.config) + implementation(commonLibs.hypertrace.framework.http) + implementation(commonLibs.slf4j2.api) + implementation(localLibs.graphql.servlet) + implementation(projects.hypertraceGraphqlImpl) + implementation(projects.hypertraceGraphqlServiceConfig) + + annotationProcessor(commonLibs.lombok) + compileOnly(commonLibs.lombok) + + runtimeOnly(commonLibs.grpc.netty) + runtimeOnly(commonLibs.log4j.slf4j2.impl) } application { diff --git a/hypertrace-graphql-service/gradle.lockfile b/hypertrace-graphql-service/gradle.lockfile new file mode 100644 index 00000000..c657fad1 --- /dev/null +++ b/hypertrace-graphql-service/gradle.lockfile @@ -0,0 +1,129 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +aopalliance:aopalliance:1.0=compileClasspath,runtimeClasspath +com.auth0:java-jwt:4.4.0=runtimeClasspath +com.auth0:jwks-rsa:0.22.0=runtimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.15.2=runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.15.2=compileClasspath,runtimeClasspath +com.google.android:annotations:4.1.1.4=runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.17.0=runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.code.gson:gson:2.10.1=runtimeClasspath +com.google.errorprone:error_prone_annotations:2.18.0=compileClasspath,runtimeClasspath +com.google.guava:failureaccess:1.0.1=compileClasspath,runtimeClasspath +com.google.guava:guava-parent:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:guava:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,runtimeClasspath +com.google.inject.extensions:guice-servlet:5.1.0=runtimeClasspath +com.google.inject:guice:6.0.0=compileClasspath,runtimeClasspath +com.google.j2objc:j2objc-annotations:2.8=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java-util:3.24.1=runtimeClasspath +com.google.protobuf:protobuf-java:3.24.1=runtimeClasspath +com.graphql-java-kickstart:graphql-java-kickstart:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java-kickstart:graphql-java-servlet:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java-extended-scalars:17.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java:19.6=compileClasspath,runtimeClasspath +com.graphql-java:java-dataloader:3.2.0=compileClasspath,runtimeClasspath +com.helger:profiler:1.1.1=runtimeClasspath +com.typesafe:config:1.4.2=compileClasspath,runtimeClasspath +commons-codec:commons-codec:1.15=runtimeClasspath +commons-logging:commons-logging:1.2=runtimeClasspath +io.dropwizard.metrics:metrics-core:4.2.16=runtimeClasspath +io.dropwizard.metrics:metrics-healthchecks:4.2.16=runtimeClasspath +io.dropwizard.metrics:metrics-json:4.2.16=runtimeClasspath +io.dropwizard.metrics:metrics-jvm:4.2.16=runtimeClasspath +io.dropwizard.metrics:metrics-servlets:4.2.16=runtimeClasspath +io.github.graphql-java:graphql-java-annotations:9.1=compileClasspath,runtimeClasspath +io.github.mweirauch:micrometer-jvm-extras:0.2.2=runtimeClasspath +io.grpc:grpc-api:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-bom:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-context:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-core:1.57.2=runtimeClasspath +io.grpc:grpc-netty:1.57.2=runtimeClasspath +io.grpc:grpc-protobuf-lite:1.57.2=runtimeClasspath +io.grpc:grpc-protobuf:1.57.2=runtimeClasspath +io.grpc:grpc-stub:1.57.2=runtimeClasspath +io.micrometer:micrometer-commons:1.10.2=runtimeClasspath +io.micrometer:micrometer-core:1.10.2=runtimeClasspath +io.micrometer:micrometer-observation:1.10.2=runtimeClasspath +io.micrometer:micrometer-registry-prometheus:1.10.2=runtimeClasspath +io.netty:netty-bom:4.1.100.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.100.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.100.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.100.Final=runtimeClasspath +io.netty:netty-codec-socks:4.1.100.Final=runtimeClasspath +io.netty:netty-codec:4.1.100.Final=runtimeClasspath +io.netty:netty-common:4.1.100.Final=runtimeClasspath +io.netty:netty-handler-proxy:4.1.100.Final=runtimeClasspath +io.netty:netty-handler:4.1.100.Final=runtimeClasspath +io.netty:netty-resolver:4.1.100.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.100.Final=runtimeClasspath +io.netty:netty-transport:4.1.100.Final=runtimeClasspath +io.opentelemetry:opentelemetry-proto:1.1.0-alpha=runtimeClasspath +io.perfmark:perfmark-api:0.26.0=runtimeClasspath +io.prometheus:simpleclient:0.16.0=runtimeClasspath +io.prometheus:simpleclient_common:0.16.0=runtimeClasspath +io.prometheus:simpleclient_dropwizard:0.12.0=runtimeClasspath +io.prometheus:simpleclient_pushgateway:0.12.0=runtimeClasspath +io.prometheus:simpleclient_servlet:0.12.0=runtimeClasspath +io.prometheus:simpleclient_servlet_common:0.12.0=runtimeClasspath +io.prometheus:simpleclient_tracer_common:0.16.0=runtimeClasspath +io.prometheus:simpleclient_tracer_otel:0.16.0=runtimeClasspath +io.prometheus:simpleclient_tracer_otel_agent:0.16.0=runtimeClasspath +io.reactivex.rxjava3:rxjava:3.1.7=runtimeClasspath +jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath +javax.annotation:javax.annotation-api:1.3.2=runtimeClasspath +javax.inject:javax.inject:1=compileClasspath,runtimeClasspath +javax.servlet:javax.servlet-api:4.0.1=compileClasspath,runtimeClasspath +javax.validation:validation-api:1.1.0.Final=compileClasspath,runtimeClasspath +javax.websocket:javax.websocket-api:1.1=compileClasspath,runtimeClasspath +javax.xml.bind:jaxb-api:2.3.0=runtimeClasspath +org.apache.commons:commons-lang3:3.12.0=runtimeClasspath +org.apache.commons:commons-text:1.10.0=runtimeClasspath +org.apache.httpcomponents:httpclient:4.5.13=runtimeClasspath +org.apache.httpcomponents:httpcore:4.4.13=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.20.0=runtimeClasspath +org.apache.logging.log4j:log4j-core:2.20.0=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.19.0=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j2-impl:2.20.0=runtimeClasspath +org.checkerframework:checker-qual:3.33.0=compileClasspath,runtimeClasspath +org.codehaus.mojo:animal-sniffer-annotations:1.23=runtimeClasspath +org.eclipse.jetty:jetty-continuation:9.4.53.v20231009=runtimeClasspath +org.eclipse.jetty:jetty-http:9.4.53.v20231009=runtimeClasspath +org.eclipse.jetty:jetty-io:9.4.53.v20231009=runtimeClasspath +org.eclipse.jetty:jetty-security:9.4.53.v20231009=runtimeClasspath +org.eclipse.jetty:jetty-server:9.4.53.v20231009=runtimeClasspath +org.eclipse.jetty:jetty-servlet:9.4.53.v20231009=runtimeClasspath +org.eclipse.jetty:jetty-servlets:9.4.53.v20231009=runtimeClasspath +org.eclipse.jetty:jetty-util-ajax:9.4.53.v20231009=runtimeClasspath +org.eclipse.jetty:jetty-util:9.4.53.v20231009=runtimeClasspath +org.hdrhistogram:HdrHistogram:2.1.12=runtimeClasspath +org.hypertrace.bom:hypertrace-bom:0.2.11=compileClasspath,runtimeClasspath +org.hypertrace.config.service:label-application-rule-config-service-api:0.1.56=runtimeClasspath +org.hypertrace.config.service:labels-config-service-api:0.1.56=runtimeClasspath +org.hypertrace.config.service:spaces-config-service-api:0.1.56=runtimeClasspath +org.hypertrace.config.service:span-processing-config-service-api:0.1.56=runtimeClasspath +org.hypertrace.core.attribute.service:attribute-service-api:0.14.35=runtimeClasspath +org.hypertrace.core.attribute.service:caching-attribute-service-client:0.14.35=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-rx-utils:0.12.6=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-utils:0.12.6=compileClasspath,runtimeClasspath +org.hypertrace.core.grpcutils:grpc-context-utils:0.12.6=runtimeClasspath +org.hypertrace.core.kafkastreams.framework:kafka-bom:0.3.9=compileClasspath,runtimeClasspath +org.hypertrace.core.serviceframework:platform-http-service-framework:0.1.62=compileClasspath,runtimeClasspath +org.hypertrace.core.serviceframework:platform-metrics:0.1.62=runtimeClasspath +org.hypertrace.core.serviceframework:platform-service-framework:0.1.62=compileClasspath,runtimeClasspath +org.hypertrace.core.serviceframework:service-framework-spi:0.1.62=compileClasspath,runtimeClasspath +org.hypertrace.entity.service:entity-service-api:0.8.86=runtimeClasspath +org.hypertrace.entity.service:entity-type-service-rx-client:0.8.86=runtimeClasspath +org.hypertrace.gateway.service:gateway-service-api:0.3.9=runtimeClasspath +org.latencyutils:LatencyUtils:2.0.3=runtimeClasspath +org.projectlombok:lombok:1.18.28=annotationProcessor,compileClasspath +org.reactivestreams:reactive-streams:1.0.3=compileClasspath +org.reactivestreams:reactive-streams:1.0.4=runtimeClasspath +org.slf4j:slf4j-api:2.0.7=compileClasspath,runtimeClasspath +empty= diff --git a/hypertrace-graphql-spaces-schema/build.gradle.kts b/hypertrace-graphql-spaces-schema/build.gradle.kts index c91ff1e4..f31d222e 100644 --- a/hypertrace-graphql-spaces-schema/build.gradle.kts +++ b/hypertrace-graphql-spaces-schema/build.gradle.kts @@ -1,28 +1,28 @@ plugins { `java-library` jacoco - id("org.hypertrace.jacoco-report-plugin") + alias(commonLibs.plugins.hypertrace.jacoco) } dependencies { - api("com.google.inject:guice") - api("org.hypertrace.core.graphql:hypertrace-core-graphql-context") - api("io.reactivex.rxjava3:rxjava") - api("io.github.graphql-java:graphql-java-annotations") + api(commonLibs.guice) + api(localLibs.core.context) + api(commonLibs.rxjava3) + api(localLibs.graphql.annotations) - annotationProcessor("org.projectlombok:lombok") - compileOnly("org.projectlombok:lombok") + annotationProcessor(commonLibs.lombok) + compileOnly(commonLibs.lombok) - implementation("org.hypertrace.config.service:spaces-config-service-api") - implementation(project(":hypertrace-graphql-service-config")) - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-common-schema") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-grpc-utils") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-deserialization") - implementation(project(":hypertrace-graphql-explorer-schema")) + implementation(commonLibs.hypertrace.configservice.spaces.api) + implementation(projects.hypertraceGraphqlServiceConfig) + implementation(localLibs.core.schema.common) + implementation(localLibs.core.grpc) + implementation(localLibs.core.deserialization) + implementation(projects.hypertraceGraphqlExplorerSchema) - testImplementation("org.junit.jupiter:junit-jupiter") - testImplementation("org.mockito:mockito-core") - testImplementation("org.mockito:mockito-junit-jupiter") + testImplementation(commonLibs.junit.jupiter) + testImplementation(commonLibs.mockito.core) + testImplementation(commonLibs.mockito.junit) } tasks.test { diff --git a/hypertrace-graphql-spaces-schema/gradle.lockfile b/hypertrace-graphql-spaces-schema/gradle.lockfile new file mode 100644 index 00000000..b0f9b424 --- /dev/null +++ b/hypertrace-graphql-spaces-schema/gradle.lockfile @@ -0,0 +1,62 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +aopalliance:aopalliance:1.0=compileClasspath,runtimeClasspath +com.auth0:java-jwt:4.4.0=runtimeClasspath +com.auth0:jwks-rsa:0.22.0=runtimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.15.2=runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.15.2=compileClasspath,runtimeClasspath +com.google.android:annotations:4.1.1.4=runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.17.0=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.code.gson:gson:2.10.1=runtimeClasspath +com.google.errorprone:error_prone_annotations:2.18.0=compileClasspath,runtimeClasspath +com.google.guava:failureaccess:1.0.1=compileClasspath,runtimeClasspath +com.google.guava:guava-parent:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:guava:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,runtimeClasspath +com.google.inject:guice:6.0.0=compileClasspath,runtimeClasspath +com.google.j2objc:j2objc-annotations:2.8=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java-util:3.24.1=runtimeClasspath +com.google.protobuf:protobuf-java:3.24.1=compileClasspath,runtimeClasspath +com.graphql-java-kickstart:graphql-java-kickstart:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java-kickstart:graphql-java-servlet:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java-extended-scalars:17.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java:19.6=compileClasspath,runtimeClasspath +com.graphql-java:java-dataloader:3.2.0=compileClasspath,runtimeClasspath +io.github.graphql-java:graphql-java-annotations:9.1=compileClasspath,runtimeClasspath +io.grpc:grpc-api:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-bom:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-context:1.57.2=runtimeClasspath +io.grpc:grpc-core:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-protobuf-lite:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-protobuf:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-stub:1.57.2=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.100.Final=runtimeClasspath +io.perfmark:perfmark-api:0.26.0=runtimeClasspath +io.reactivex.rxjava3:rxjava:3.1.7=compileClasspath,runtimeClasspath +jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath +javax.annotation:javax.annotation-api:1.3.2=compileClasspath,runtimeClasspath +javax.inject:javax.inject:1=compileClasspath,runtimeClasspath +javax.servlet:javax.servlet-api:4.0.1=compileClasspath,runtimeClasspath +javax.validation:validation-api:1.1.0.Final=compileClasspath,runtimeClasspath +javax.websocket:javax.websocket-api:1.1=compileClasspath,runtimeClasspath +org.checkerframework:checker-qual:3.33.0=compileClasspath,runtimeClasspath +org.codehaus.mojo:animal-sniffer-annotations:1.23=runtimeClasspath +org.hypertrace.bom:hypertrace-bom:0.2.11=compileClasspath,runtimeClasspath +org.hypertrace.config.service:spaces-config-service-api:0.1.56=compileClasspath,runtimeClasspath +org.hypertrace.core.attribute.service:attribute-service-api:0.14.35=runtimeClasspath +org.hypertrace.core.attribute.service:caching-attribute-service-client:0.14.35=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-rx-utils:0.12.6=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-utils:0.12.6=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-context-utils:0.12.6=compileClasspath,runtimeClasspath +org.hypertrace.core.kafkastreams.framework:kafka-bom:0.3.9=compileClasspath,runtimeClasspath +org.hypertrace.gateway.service:gateway-service-api:0.3.9=runtimeClasspath +org.projectlombok:lombok:1.18.28=annotationProcessor,compileClasspath +org.reactivestreams:reactive-streams:1.0.4=compileClasspath,runtimeClasspath +org.slf4j:slf4j-api:2.0.7=compileClasspath,runtimeClasspath +empty= diff --git a/hypertrace-graphql-span-processing-schema/build.gradle.kts b/hypertrace-graphql-span-processing-schema/build.gradle.kts index 32bc3414..eea873c4 100644 --- a/hypertrace-graphql-span-processing-schema/build.gradle.kts +++ b/hypertrace-graphql-span-processing-schema/build.gradle.kts @@ -1,24 +1,24 @@ plugins { `java-library` jacoco - id("org.hypertrace.jacoco-report-plugin") + alias(commonLibs.plugins.hypertrace.jacoco) } dependencies { - api("com.google.inject:guice") - api("com.graphql-java:graphql-java") - api("org.hypertrace.core.graphql:hypertrace-core-graphql-common-schema") - api("org.hypertrace.core.graphql:hypertrace-core-graphql-spi") - api("io.github.graphql-java:graphql-java-annotations") + api(commonLibs.guice) + api(commonLibs.graphql.java) + api(localLibs.core.schema.common) + api(localLibs.core.spi) + api(localLibs.graphql.annotations) - annotationProcessor("org.projectlombok:lombok") - compileOnly("org.projectlombok:lombok") + annotationProcessor(commonLibs.lombok) + compileOnly(commonLibs.lombok) - implementation(project(":hypertrace-graphql-service-config")) - implementation("org.hypertrace.config.service:span-processing-config-service-api") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-context") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-grpc-utils") - implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-deserialization") - implementation("org.slf4j:slf4j-api") - implementation("io.reactivex.rxjava3:rxjava") + implementation(projects.hypertraceGraphqlServiceConfig) + implementation(commonLibs.hypertrace.configservice.spanprocessing.api) + implementation(localLibs.core.context) + implementation(localLibs.core.grpc) + implementation(localLibs.core.deserialization) + implementation(commonLibs.slf4j2.api) + implementation(commonLibs.rxjava3) } diff --git a/hypertrace-graphql-span-processing-schema/gradle.lockfile b/hypertrace-graphql-span-processing-schema/gradle.lockfile new file mode 100644 index 00000000..5d439665 --- /dev/null +++ b/hypertrace-graphql-span-processing-schema/gradle.lockfile @@ -0,0 +1,60 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +aopalliance:aopalliance:1.0=compileClasspath,runtimeClasspath +com.auth0:java-jwt:4.4.0=runtimeClasspath +com.auth0:jwks-rsa:0.22.0=runtimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.15.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.15.2=runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.15.2=compileClasspath,runtimeClasspath +com.google.android:annotations:4.1.1.4=runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.17.0=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.code.gson:gson:2.10.1=runtimeClasspath +com.google.errorprone:error_prone_annotations:2.18.0=compileClasspath,runtimeClasspath +com.google.guava:failureaccess:1.0.1=compileClasspath,runtimeClasspath +com.google.guava:guava-parent:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:guava:32.1.2-jre=compileClasspath,runtimeClasspath +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,runtimeClasspath +com.google.inject:guice:6.0.0=compileClasspath,runtimeClasspath +com.google.j2objc:j2objc-annotations:2.8=compileClasspath +com.google.protobuf:protobuf-java:3.24.1=compileClasspath,runtimeClasspath +com.graphql-java-kickstart:graphql-java-kickstart:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java-kickstart:graphql-java-servlet:14.0.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java-extended-scalars:17.0=compileClasspath,runtimeClasspath +com.graphql-java:graphql-java:19.6=compileClasspath,runtimeClasspath +com.graphql-java:java-dataloader:3.2.0=compileClasspath,runtimeClasspath +io.github.graphql-java:graphql-java-annotations:9.1=compileClasspath,runtimeClasspath +io.grpc:grpc-api:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-bom:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-context:1.57.2=runtimeClasspath +io.grpc:grpc-core:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-protobuf-lite:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-protobuf:1.57.2=compileClasspath,runtimeClasspath +io.grpc:grpc-stub:1.57.2=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.100.Final=runtimeClasspath +io.perfmark:perfmark-api:0.26.0=runtimeClasspath +io.reactivex.rxjava3:rxjava:3.1.7=compileClasspath,runtimeClasspath +jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath +javax.annotation:javax.annotation-api:1.3.2=compileClasspath,runtimeClasspath +javax.inject:javax.inject:1=compileClasspath,runtimeClasspath +javax.servlet:javax.servlet-api:4.0.1=compileClasspath,runtimeClasspath +javax.validation:validation-api:1.1.0.Final=compileClasspath,runtimeClasspath +javax.websocket:javax.websocket-api:1.1=compileClasspath,runtimeClasspath +org.checkerframework:checker-qual:3.33.0=compileClasspath,runtimeClasspath +org.codehaus.mojo:animal-sniffer-annotations:1.23=runtimeClasspath +org.hypertrace.bom:hypertrace-bom:0.2.11=compileClasspath,runtimeClasspath +org.hypertrace.config.service:span-processing-config-service-api:0.1.56=compileClasspath,runtimeClasspath +org.hypertrace.core.attribute.service:attribute-service-api:0.14.35=runtimeClasspath +org.hypertrace.core.attribute.service:caching-attribute-service-client:0.14.35=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-rx-utils:0.12.6=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-client-utils:0.12.6=runtimeClasspath +org.hypertrace.core.grpcutils:grpc-context-utils:0.12.6=compileClasspath,runtimeClasspath +org.hypertrace.core.kafkastreams.framework:kafka-bom:0.3.9=compileClasspath,runtimeClasspath +org.projectlombok:lombok:1.18.28=annotationProcessor,compileClasspath +org.reactivestreams:reactive-streams:1.0.4=compileClasspath,runtimeClasspath +org.slf4j:slf4j-api:2.0.7=compileClasspath,runtimeClasspath +empty= diff --git a/settings.gradle.kts b/settings.gradle.kts index 01779588..ceba7d9f 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1,3 +1,5 @@ +import org.hypertrace.gradle.dependency.DependencyPluginSettingExtension + rootProject.name = "hypertrace-graphql-root" pluginManagement { @@ -10,8 +12,15 @@ pluginManagement { plugins { id("org.hypertrace.version-settings") version "0.2.0" + id("org.hypertrace.dependency-settings") version "0.1.1" +} + +configure { + catalogVersion.set("0.2.11") } +enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS") + includeBuild("./hypertrace-core-graphql") include(":hypertrace-graphql-service") include(":hypertrace-graphql-impl") @@ -23,7 +32,6 @@ include(":hypertrace-graphql-attribute-scope") include(":hypertrace-graphql-explorer-context") include(":hypertrace-graphql-entity-type") include(":hypertrace-graphql-service-config") -include(":hypertrace-graphql-platform") include(":hypertrace-graphql-spaces-schema") include(":hypertrace-graphql-labels-schema-api") include(":hypertrace-graphql-labels-schema-impl")