Skip to content

Commit aecb7f9

Browse files
committed
Green?
1 parent c8ef625 commit aecb7f9

File tree

4 files changed

+78
-0
lines changed
  • tmail-backend
    • apps
    • integration-tests/webadmin/distributed-webadmin-integration-tests
    • tmail-third-party/openpaas

4 files changed

+78
-0
lines changed

tmail-backend/apps/distributed/pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -389,10 +389,28 @@
389389
<artifactId>testcontainers</artifactId>
390390
<scope>test</scope>
391391
</dependency>
392+
<dependency>
393+
<groupId>org.wiremock</groupId>
394+
<artifactId>wiremock-standalone</artifactId>
395+
<version>3.10.0</version>
396+
<scope>test</scope>
397+
</dependency>
392398
<dependency>
393399
<groupId>org.mock-server</groupId>
394400
<artifactId>mockserver-netty</artifactId>
395401
<scope>test</scope>
402+
<exclusions>
403+
<exclusion>
404+
<groupId>com.networknt</groupId>
405+
<artifactId>json-schema-validator</artifactId>
406+
</exclusion>
407+
</exclusions>
408+
</dependency>
409+
<dependency>
410+
<groupId>com.networknt</groupId>
411+
<artifactId>json-schema-validator</artifactId>
412+
<version>1.5.4</version>
413+
<scope>test</scope>
396414
</dependency>
397415
</dependencies>
398416

tmail-backend/apps/memory/pom.xml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,12 @@
137137
<groupId>${james.groupId}</groupId>
138138
<artifactId>jmap-rfc-8621-integration-tests-common</artifactId>
139139
<scope>test</scope>
140+
<exclusions>
141+
<exclusion>
142+
<groupId>org.mock-server</groupId>
143+
<artifactId>mockserver-netty</artifactId>
144+
</exclusion>
145+
</exclusions>
140146
</dependency>
141147
<dependency>
142148
<groupId>${james.groupId}</groupId>
@@ -187,6 +193,29 @@
187193
<groupId>com.linagora.tmail</groupId>
188194
<artifactId>logback-json-classic</artifactId>
189195
</dependency>
196+
<dependency>
197+
<groupId>org.wiremock</groupId>
198+
<artifactId>wiremock-standalone</artifactId>
199+
<version>3.10.0</version>
200+
<scope>test</scope>
201+
</dependency>
202+
<dependency>
203+
<groupId>org.mock-server</groupId>
204+
<artifactId>mockserver-netty</artifactId>
205+
<scope>test</scope>
206+
<exclusions>
207+
<exclusion>
208+
<groupId>com.networknt</groupId>
209+
<artifactId>json-schema-validator</artifactId>
210+
</exclusion>
211+
</exclusions>
212+
</dependency>
213+
<dependency>
214+
<groupId>com.networknt</groupId>
215+
<artifactId>json-schema-validator</artifactId>
216+
<version>1.5.4</version>
217+
<scope>test</scope>
218+
</dependency>
190219
</dependencies>
191220

192221
<build>

tmail-backend/integration-tests/webadmin/distributed-webadmin-integration-tests/pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,10 +135,28 @@
135135
<type>test-jar</type>
136136
<scope>test</scope>
137137
</dependency>
138+
<dependency>
139+
<groupId>org.wiremock</groupId>
140+
<artifactId>wiremock-standalone</artifactId>
141+
<version>3.10.0</version>
142+
<scope>test</scope>
143+
</dependency>
138144
<dependency>
139145
<groupId>org.mock-server</groupId>
140146
<artifactId>mockserver-netty</artifactId>
141147
<scope>test</scope>
148+
<exclusions>
149+
<exclusion>
150+
<groupId>com.networknt</groupId>
151+
<artifactId>json-schema-validator</artifactId>
152+
</exclusion>
153+
</exclusions>
154+
</dependency>
155+
<dependency>
156+
<groupId>com.networknt</groupId>
157+
<artifactId>json-schema-validator</artifactId>
158+
<version>1.5.4</version>
159+
<scope>test</scope>
142160
</dependency>
143161
</dependencies>
144162
</project>

tmail-backend/tmail-third-party/openpaas/pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,18 @@
8989
<groupId>org.mock-server</groupId>
9090
<artifactId>mockserver-netty</artifactId>
9191
<scope>test</scope>
92+
<exclusions>
93+
<exclusion>
94+
<groupId>com.networknt</groupId>
95+
<artifactId>json-schema-validator</artifactId>
96+
</exclusion>
97+
</exclusions>
98+
</dependency>
99+
<dependency>
100+
<groupId>com.networknt</groupId>
101+
<artifactId>json-schema-validator</artifactId>
102+
<version>1.5.4</version>
103+
<scope>test</scope>
92104
</dependency>
93105
<dependency>
94106
<groupId>net.javacrumbs.json-unit</groupId>
@@ -103,6 +115,7 @@
103115
<groupId>org.wiremock</groupId>
104116
<artifactId>wiremock-standalone</artifactId>
105117
<version>3.10.0</version>
118+
<scope>test</scope>
106119
</dependency>
107120
</dependencies>
108121

0 commit comments

Comments
 (0)