Skip to content

Commit 131a6a4

Browse files
committed
Fix ci
1 parent fcf881e commit 131a6a4

2 files changed

Lines changed: 45 additions & 0 deletions

File tree

common/dependency-reduced-pom.xml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,38 @@
122122
<version>3.36.0.3</version>
123123
<scope>test</scope>
124124
</dependency>
125+
<dependency>
126+
<groupId>org.mockito</groupId>
127+
<artifactId>mockito-inline</artifactId>
128+
<version>4.5.1</version>
129+
<scope>test</scope>
130+
<exclusions>
131+
<exclusion>
132+
<artifactId>mockito-core</artifactId>
133+
<groupId>org.mockito</groupId>
134+
</exclusion>
135+
</exclusions>
136+
</dependency>
137+
<dependency>
138+
<groupId>org.junit.jupiter</groupId>
139+
<artifactId>junit-jupiter</artifactId>
140+
<version>5.8.2</version>
141+
<scope>test</scope>
142+
<exclusions>
143+
<exclusion>
144+
<artifactId>junit-jupiter-api</artifactId>
145+
<groupId>org.junit.jupiter</groupId>
146+
</exclusion>
147+
<exclusion>
148+
<artifactId>junit-jupiter-params</artifactId>
149+
<groupId>org.junit.jupiter</groupId>
150+
</exclusion>
151+
<exclusion>
152+
<artifactId>junit-jupiter-engine</artifactId>
153+
<groupId>org.junit.jupiter</groupId>
154+
</exclusion>
155+
</exclusions>
156+
</dependency>
125157
<dependency>
126158
<groupId>org.projectlombok</groupId>
127159
<artifactId>lombok</artifactId>

common/pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,19 @@
131131
<version>${libs.sqlite}</version>
132132
<scope>test</scope>
133133
</dependency>
134+
135+
<dependency>
136+
<groupId>org.mockito</groupId>
137+
<artifactId>mockito-inline</artifactId>
138+
<version>${dev.mockito}</version>
139+
<scope>test</scope>
140+
</dependency>
141+
<dependency>
142+
<groupId>org.junit.jupiter</groupId>
143+
<artifactId>junit-jupiter</artifactId>
144+
<version>${dev.junit}</version>
145+
<scope>test</scope>
146+
</dependency>
134147
</dependencies>
135148

136149
</project>

0 commit comments

Comments
 (0)