File tree 6 files changed +13
-9
lines changed
hiero-dependency-versions 6 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ jobs:
175
175
uses : gradle/actions/setup-gradle@06832c7b30a0129d7fb559bcc6e43d26f6374244 # v4.3.1
176
176
177
177
- name : Install Local Node
178
- run : npm install @hashgraph/hedera-local
178
+ run : npm install -g @hashgraph/hedera-local
179
179
180
180
- name : Build SDK
181
181
run : ./gradlew assemble
@@ -235,7 +235,7 @@ jobs:
235
235
uses : gradle/actions/setup-gradle@06832c7b30a0129d7fb559bcc6e43d26f6374244 # v4.3.1
236
236
237
237
- name : Install Local Node
238
- run : npm install @hashgraph/hedera-local
238
+ run : npm install -g @hashgraph/hedera-local
239
239
240
240
- name : Build SDK
241
241
run : ./gradlew assemble
@@ -289,7 +289,7 @@ jobs:
289
289
uses : gradle/actions/setup-gradle@06832c7b30a0129d7fb559bcc6e43d26f6374244 # v4.3.1
290
290
291
291
- name : Install Local Node
292
- run : npm install @hashgraph/hedera-local
292
+ run : npm install -g @hashgraph/hedera-local
293
293
294
294
- name : Build TCK
295
295
run : ./gradlew assemble
Original file line number Diff line number Diff line change 1
1
// 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 " }
3
3
4
4
@Suppress(" UnstableApiUsage" ) dependencyResolutionManagement { repositories.mavenCentral() }
5
5
Original file line number Diff line number Diff line change @@ -31,8 +31,8 @@ tasks.testCodeCoverageReport {
31
31
objects.named(VerificationType .JACOCO_RESULTS ),
32
32
)
33
33
attributes.attribute(
34
- TestSuiteType . TEST_SUITE_TYPE_ATTRIBUTE ,
35
- objects.named(TestSuiteType . INTEGRATION_TEST ),
34
+ TestSuiteName . TEST_SUITE_NAME_ATTRIBUTE ,
35
+ objects.named(" testIntegration " ),
36
36
)
37
37
}
38
38
.files
Original file line number Diff line number Diff line change
1
+ # SPDX-License-Identifier: Apache-2.0
2
+
1
3
distributionBase =GRADLE_USER_HOME
2
4
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
4
6
networkTimeout =10000
5
7
validateDistributionUrl =true
6
8
zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ val bouncycastle = "1.80"
12
12
val grpc = " 1.71.0"
13
13
val protobuf = " 4.30.0"
14
14
val slf4j = " 2.0.17"
15
+ val mockito = " 5.16.1"
15
16
16
17
dependencies {
17
18
api(platform(" org.springframework.boot:spring-boot-dependencies:3.4.4" ))
@@ -45,7 +46,8 @@ dependencies.constraints {
45
46
api(" org.apache.commons:commons-lang3:3.17.0" ) { because(" org.apache.commons.lang3" ) }
46
47
api(" org.assertj:assertj-core:3.27.3" ) { because(" org.assertj.core" ) }
47
48
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" ) }
49
51
50
52
api(" com.google.protobuf:protoc:$protobuf " )
51
53
api(" io.grpc:protoc-gen-grpc-java:$grpc " )
Original file line number Diff line number Diff line change 1
1
// 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 " }
3
3
4
4
rootProject.name = " hedera-sdk-java"
5
5
You can’t perform that action at this time.
0 commit comments