Skip to content

Commit 641b2c6

Browse files
chore(deps): bump org.mockito:mockito-core from 5.15.2 to 5.16.1 in /hiero-dependency-versions (#2247)
Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: PavelSBorisov <[email protected]> Signed-off-by: Pavel Borisov <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: PavelSBorisov <[email protected]> Co-authored-by: Pavel Borisov <[email protected]>
1 parent e0ac6cf commit 641b2c6

File tree

6 files changed

+13
-9
lines changed

6 files changed

+13
-9
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ jobs:
175175
uses: gradle/actions/setup-gradle@06832c7b30a0129d7fb559bcc6e43d26f6374244 # v4.3.1
176176

177177
- name: Install Local Node
178-
run: npm install @hashgraph/hedera-local
178+
run: npm install -g @hashgraph/hedera-local
179179

180180
- name: Build SDK
181181
run: ./gradlew assemble
@@ -235,7 +235,7 @@ jobs:
235235
uses: gradle/actions/setup-gradle@06832c7b30a0129d7fb559bcc6e43d26f6374244 # v4.3.1
236236

237237
- name: Install Local Node
238-
run: npm install @hashgraph/hedera-local
238+
run: npm install -g @hashgraph/hedera-local
239239

240240
- name: Build SDK
241241
run: ./gradlew assemble
@@ -289,7 +289,7 @@ jobs:
289289
uses: gradle/actions/setup-gradle@06832c7b30a0129d7fb559bcc6e43d26f6374244 # v4.3.1
290290

291291
- name: Install Local Node
292-
run: npm install @hashgraph/hedera-local
292+
run: npm install -g @hashgraph/hedera-local
293293

294294
- name: Build TCK
295295
run: ./gradlew assemble

examples/settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
plugins { id("org.hiero.gradle.build") version "0.3.4" }
2+
plugins { id("org.hiero.gradle.build") version "0.3.6" }
33

44
@Suppress("UnstableApiUsage") dependencyResolutionManagement { repositories.mavenCentral() }
55

gradle/aggregation/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ tasks.testCodeCoverageReport {
3131
objects.named(VerificationType.JACOCO_RESULTS),
3232
)
3333
attributes.attribute(
34-
TestSuiteType.TEST_SUITE_TYPE_ATTRIBUTE,
35-
objects.named(TestSuiteType.INTEGRATION_TEST),
34+
TestSuiteName.TEST_SUITE_NAME_ATTRIBUTE,
35+
objects.named("testIntegration"),
3636
)
3737
}
3838
.files

gradle/wrapper/gradle-wrapper.properties

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
13
distributionBase=GRADLE_USER_HOME
24
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
46
networkTimeout=10000
57
validateDistributionUrl=true
68
zipStoreBase=GRADLE_USER_HOME

hiero-dependency-versions/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ val bouncycastle = "1.80"
1212
val grpc = "1.71.0"
1313
val protobuf = "4.30.0"
1414
val slf4j = "2.0.17"
15+
val mockito = "5.16.1"
1516

1617
dependencies {
1718
api(platform("org.springframework.boot:spring-boot-dependencies:3.4.4"))
@@ -45,7 +46,8 @@ dependencies.constraints {
4546
api("org.apache.commons:commons-lang3:3.17.0") { because("org.apache.commons.lang3") }
4647
api("org.assertj:assertj-core:3.27.3") { because("org.assertj.core") }
4748
api("org.junit.jupiter:junit-jupiter-api:5.12.2") { because("org.junit.jupiter.api") }
48-
api("org.mockito:mockito-core:5.15.2") { because("org.mockito") }
49+
api("org.mockito:mockito-core:$mockito") { because("org.mockito") }
50+
api("org.mockito:mockito-junit-jupiter:$mockito") { because("org.mockito.junit.jupiter") }
4951

5052
api("com.google.protobuf:protoc:$protobuf")
5153
api("io.grpc:protoc-gen-grpc-java:$grpc")

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: Apache-2.0
2-
plugins { id("org.hiero.gradle.build") version "0.3.4" }
2+
plugins { id("org.hiero.gradle.build") version "0.3.6" }
33

44
rootProject.name = "hedera-sdk-java"
55

0 commit comments

Comments
 (0)