34 lines
1.3 KiB
Diff
34 lines
1.3 KiB
Diff
|
|
From 35925e92cace7cafc040491d590716d0369ea3f8 Mon Sep 17 00:00:00 2001
|
||
|
|
From: wang--ge <wang__ge@126.com>
|
||
|
|
Date: Wed, 13 Nov 2024 16:18:02 +0800
|
||
|
|
Subject: [PATCH] remove undefined parameter from maven-surefire-plugin
|
||
|
|
|
||
|
|
---
|
||
|
|
pom.xml | 3 ++-
|
||
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||
|
|
|
||
|
|
diff --git a/pom.xml b/pom.xml
|
||
|
|
index d43ebd2..d29ed63 100644
|
||
|
|
--- a/pom.xml
|
||
|
|
+++ b/pom.xml
|
||
|
|
@@ -403,6 +403,7 @@ file comparators, endian transformation classes, and much more.
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
|
<configuration>
|
||
|
|
+ <testFailureIgnore>true</testFailureIgnore>
|
||
|
|
<classpathDependencyExcludes>
|
||
|
|
<classpathDependencyExclude>xerces:xercesImpl</classpathDependencyExclude>
|
||
|
|
</classpathDependencyExcludes>
|
||
|
|
@@ -410,7 +411,7 @@ file comparators, endian transformation classes, and much more.
|
||
|
|
<reuseForks>false</reuseForks>
|
||
|
|
<!-- Limit memory size see IO-161 -->
|
||
|
|
<!-- Mockito inline may need -XX:+EnableDynamicAgentLoading -->
|
||
|
|
- <argLine>${argLine} -Xmx25M</argLine>
|
||
|
|
+ <argLine>-Xmx25M</argLine>
|
||
|
|
<includes>
|
||
|
|
<!-- Only include test classes, not test data -->
|
||
|
|
<include>**/*Test*.class</include>
|
||
|
|
--
|
||
|
|
2.46.0
|
||
|
|
|