Skip to content

Commit 2dac2b3

Browse files
committed
fix
1 parent 70df7bd commit 2dac2b3

File tree

3 files changed

+40
-0
lines changed

3 files changed

+40
-0
lines changed

mcp-logging-slf4j/pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,17 @@
2828
<version>${slf4j-api.version}</version>
2929
</dependency>
3030
</dependencies>
31+
32+
<!-- This module does not use mockito -->
33+
<build>
34+
<plugins>
35+
<plugin>
36+
<groupId>org.apache.maven.plugins</groupId>
37+
<artifactId>maven-surefire-plugin</artifactId>
38+
<configuration>
39+
<argLine>${surefireArgLine}</argLine>
40+
</configuration>
41+
</plugin>
42+
</plugins>
43+
</build>
3144
</project>

mcp-schema-jackson/pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,18 @@
6565
<scope>test</scope>
6666
</dependency>
6767
</dependencies>
68+
69+
<!-- This module does not use mockito -->
70+
<build>
71+
<plugins>
72+
<plugin>
73+
<groupId>org.apache.maven.plugins</groupId>
74+
<artifactId>maven-surefire-plugin</artifactId>
75+
<configuration>
76+
<argLine>${surefireArgLine}</argLine>
77+
</configuration>
78+
</plugin>
79+
</plugins>
80+
</build>
81+
6882
</project>

mcp-spi/pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,17 @@
2929
<scope>test</scope>
3030
</dependency>
3131
</dependencies>
32+
33+
<!-- This module does not use mockito -->
34+
<build>
35+
<plugins>
36+
<plugin>
37+
<groupId>org.apache.maven.plugins</groupId>
38+
<artifactId>maven-surefire-plugin</artifactId>
39+
<configuration>
40+
<argLine>${surefireArgLine}</argLine>
41+
</configuration>
42+
</plugin>
43+
</plugins>
44+
</build>
3245
</project>

0 commit comments

Comments
 (0)