Skip to content

Commit b3d902e

Browse files
add mockito inline
1 parent 51acf20 commit b3d902e

File tree

5 files changed

+27
-2
lines changed

5 files changed

+27
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com)
1010

1111
## Unreleased ([details][unreleased changes details])
1212

13+
## Added
14+
15+
- 3327 - added Mockito inline dependency
16+
1317
6.6.0 - 2024-04-15
1418

1519
## Added

bundle-cloud/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,11 @@ Fragment-Host: com.adobe.acs.acs-aem-commons-bundle
9595
<artifactId>mockito-core</artifactId>
9696
<scope>test</scope>
9797
</dependency>
98+
<dependency>
99+
<groupId>org.mockito</groupId>
100+
<artifactId>mockito-inline</artifactId>
101+
<scope>test</scope>
102+
</dependency>
98103
<dependency>
99104
<groupId>org.apache.sling</groupId>
100105
<artifactId>org.apache.sling.testing.osgi-mock.junit4</artifactId>

bundle/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -522,6 +522,11 @@
522522
<artifactId>mockito-junit-jupiter</artifactId>
523523
<scope>test</scope>
524524
</dependency>
525+
<dependency>
526+
<groupId>org.mockito</groupId>
527+
<artifactId>mockito-inline</artifactId>
528+
<scope>test</scope>
529+
</dependency>
525530
<dependency>
526531
<groupId>junit-addons</groupId>
527532
<artifactId>junit-addons</artifactId>

oakpal-checks/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,11 @@
262262
<artifactId>mockito-core</artifactId>
263263
<scope>test</scope>
264264
</dependency>
265+
<dependency>
266+
<groupId>org.mockito</groupId>
267+
<artifactId>mockito-inline</artifactId>
268+
<scope>test</scope>
269+
</dependency>
265270
<dependency>
266271
<groupId>net.adamcin.oakpal</groupId>
267272
<artifactId>oakpal-testing</artifactId>

pom.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -678,13 +678,19 @@ Service-Component: OSGI-INF/*.xml
678678
<dependency>
679679
<groupId>org.mockito</groupId>
680680
<artifactId>mockito-core</artifactId>
681-
<version>4.11.0</version><!-- >= 5.x requires Java 11 -->
681+
<version>5.2.0</version><!-- >= 5.x requires Java 11 -->
682682
<scope>test</scope>
683683
</dependency>
684684
<dependency>
685685
<groupId>org.mockito</groupId>
686686
<artifactId>mockito-junit-jupiter</artifactId>
687-
<version>4.11.0</version><!-- >= 5.x requires Java 11 -->
687+
<version>5.2.0</version><!-- >= 5.x requires Java 11 -->
688+
<scope>test</scope>
689+
</dependency>
690+
<dependency>
691+
<groupId>org.mockito</groupId>
692+
<artifactId>mockito-inline</artifactId>
693+
<version>5.2.0</version><!-- >= 5.x requires Java 11 -->
688694
<scope>test</scope>
689695
</dependency>
690696
<dependency>

0 commit comments

Comments
 (0)