Skip to content

Commit d001cb4

Browse files
Bump mockito-core and maven-compiler (#458)
- Updates `org.mockito:mockito-core` from 5.19.0 to 5.20.0 - Updates `org.apache.maven.plugins:maven-compiler-plugin` from 3.14.0 to 3.14.1 Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent eadf73e commit d001cb4

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ subprojects {
6666
testImplementation 'org.junit.jupiter:junit-jupiter'
6767
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
6868
testImplementation 'org.assertj:assertj-core:3.27.5'
69-
testImplementation 'org.mockito:mockito-core:5.19.0'
69+
testImplementation 'org.mockito:mockito-core:5.20.0'
7070
testImplementation 'uk.org.webcompere:system-stubs-jupiter:2.1.8'
7171

7272
testImplementation 'org.hamcrest:hamcrest-library:3.0'

examples/fabric-contract-example-as-service/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dependencies {
1717
implementation 'org.json:json:20250517'
1818
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
1919
testImplementation 'org.assertj:assertj-core:3.27.5'
20-
testImplementation 'org.mockito:mockito-core:5.19.0'
20+
testImplementation 'org.mockito:mockito-core:5.20.0'
2121
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
2222
}
2323

examples/fabric-contract-example-gradle/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dependencies {
1717
implementation 'org.json:json:20250517'
1818
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
1919
testImplementation 'org.assertj:assertj-core:3.27.5'
20-
testImplementation 'org.mockito:mockito-core:5.19.0'
20+
testImplementation 'org.mockito:mockito-core:5.20.0'
2121
}
2222

2323
shadowJar {

examples/fabric-contract-example-maven/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
<dependency>
8989
<groupId>org.mockito</groupId>
9090
<artifactId>mockito-core</artifactId>
91-
<version>5.19.0</version>
91+
<version>5.20.0</version>
9292
</dependency>
9393

9494
<!-- https://mvnrepository.com/artifact/org.json/json -->
@@ -109,7 +109,7 @@
109109
</plugin>
110110
<plugin>
111111
<artifactId>maven-compiler-plugin</artifactId>
112-
<version>3.14.0</version>
112+
<version>3.14.1</version>
113113
<configuration>
114114
<release>${java.version}</release>
115115
</configuration>

examples/ledger-api/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dependencies {
1717
implementation 'org.json:json:20250517'
1818
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
1919
testImplementation 'org.assertj:assertj-core:3.27.5'
20-
testImplementation 'org.mockito:mockito-core:5.19.0'
20+
testImplementation 'org.mockito:mockito-core:5.20.0'
2121
}
2222

2323
shadowJar {

fabric-chaincode-integration-test/src/contracts/bare-maven/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<plugins>
4444
<plugin>
4545
<artifactId>maven-compiler-plugin</artifactId>
46-
<version>3.14.0</version>
46+
<version>3.14.1</version>
4747
<configuration>
4848
<release>${java.version}</release>
4949
</configuration>

fabric-chaincode-integration-test/src/contracts/wrapper-maven/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<plugins>
4848
<plugin>
4949
<artifactId>maven-compiler-plugin</artifactId>
50-
<version>3.14.0</version>
50+
<version>3.14.1</version>
5151
<configuration>
5252
<release>${java.version}</release>
5353
</configuration>

0 commit comments

Comments
 (0)