|
3 | 3 | *
|
4 | 4 | * SPDX-License-Identifier: Apache-2.0
|
5 | 5 | */
|
6 |
| - buildscript { |
7 |
| - repositories { |
8 |
| - mavenCentral() |
9 |
| - } |
10 |
| - dependencies { |
11 |
| - classpath 'org.owasp:dependency-check-gradle:8.4.0' |
12 |
| - } |
13 |
| -} |
14 | 6 |
|
15 | 7 | plugins {
|
16 | 8 | id 'maven-publish'
|
17 | 9 | id 'jacoco'
|
18 | 10 | id 'signing'
|
19 | 11 | id 'checkstyle'
|
20 |
| - id 'org.cyclonedx.bom' version '1.8.1' |
21 | 12 | }
|
22 | 13 |
|
23 | 14 | checkstyle {
|
24 |
| - toolVersion '10.12.5' |
| 15 | + toolVersion '10.18.1' |
25 | 16 | configFile file("../ci/checkstyle/checkstyle.xml")
|
26 | 17 | configProperties = [root_dir: file("..") ]
|
27 | 18 | }
|
@@ -54,34 +45,33 @@ tasks.withType(org.gradle.api.tasks.testing.Test) {
|
54 | 45 | }
|
55 | 46 |
|
56 | 47 | dependencies {
|
| 48 | + implementation platform('com.google.protobuf:protobuf-bom:3.25.5') |
| 49 | + implementation platform('io.grpc:grpc-bom:1.68.0') |
| 50 | + implementation platform('io.opentelemetry:opentelemetry-bom:1.42.1') |
| 51 | + |
57 | 52 | implementation 'org.hyperledger.fabric:fabric-protos:0.3.3'
|
58 | 53 | implementation 'org.bouncycastle:bcpkix-jdk18on:1.78.1'
|
59 | 54 | implementation 'org.bouncycastle:bcprov-jdk18on:1.78.1'
|
60 |
| - implementation 'io.github.classgraph:classgraph:4.8.165' |
| 55 | + implementation 'io.github.classgraph:classgraph:4.8.176' |
61 | 56 | implementation 'com.github.everit-org.json-schema:org.everit.json.schema:1.14.4'
|
62 | 57 | implementation 'org.json:json:20240303'
|
63 |
| - implementation 'com.google.protobuf:protobuf-java-util:3.24.4' |
| 58 | + implementation 'com.google.protobuf:protobuf-java-util' |
64 | 59 |
|
65 |
| - // Required if using Java 11+ as no longer bundled in the core libraries |
66 |
| - testImplementation 'javax.xml.bind:jaxb-api:2.3.1' |
67 |
| - |
68 |
| - implementation platform('io.grpc:grpc-bom:1.60.0') |
69 | 60 | implementation 'io.grpc:grpc-netty-shaded'
|
70 | 61 | implementation 'io.grpc:grpc-protobuf'
|
71 | 62 | implementation 'io.grpc:grpc-stub'
|
72 |
| - |
73 | 63 | testImplementation 'io.grpc:grpc-inprocess'
|
74 |
| - |
75 |
| - implementation platform("io.opentelemetry:opentelemetry-bom:1.32.0") |
| 64 | + // Required if using Java 11+ as no longer bundled in the core libraries |
| 65 | + testImplementation 'javax.xml.bind:jaxb-api:2.3.1' |
76 | 66 |
|
77 | 67 | implementation 'io.opentelemetry:opentelemetry-api'
|
78 |
| - implementation 'io.opentelemetry.proto:opentelemetry-proto:1.0.0-alpha' |
| 68 | + implementation 'io.opentelemetry.proto:opentelemetry-proto:1.3.2-alpha' |
79 | 69 | implementation 'io.opentelemetry:opentelemetry-sdk'
|
80 | 70 | implementation 'io.opentelemetry:opentelemetry-sdk-extension-autoconfigure'
|
81 | 71 | implementation 'io.opentelemetry:opentelemetry-sdk-trace'
|
82 | 72 | implementation 'io.opentelemetry:opentelemetry-exporter-otlp'
|
83 | 73 | implementation 'io.opentelemetry:opentelemetry-extension-trace-propagators'
|
84 |
| - implementation 'io.opentelemetry.instrumentation:opentelemetry-grpc-1.6:1.32.0-alpha' |
| 74 | + implementation 'io.opentelemetry.instrumentation:opentelemetry-grpc-1.6:2.8.0-alpha' |
85 | 75 | }
|
86 | 76 |
|
87 | 77 | sourceSets {
|
|
0 commit comments