Skip to content

Commit 2b9849c

Browse files
committed
Corrected check-go-files profile.
1 parent 725585a commit 2b9849c

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

pom.xml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ under the License.
9696
<!-- System-wide properties -->
9797
<maven.version>3.9.10</maven.version>
9898
<java.version>24</java.version>
99-
<jvm-arguments></jvm-arguments>
99+
<jvm-arguments>-Xmx10g -Duser.language=en -Duser.country=US -Dfile.encoding=UTF-8</jvm-arguments>
100100
<maven.compiler.source>${java.version}</maven.compiler.source>
101101
<maven.compiler.target>${java.version}</maven.compiler.target>
102-
<argLine>-Xmx10g -Duser.language=en -Duser.country=US -Dfile.encoding=UTF-8 ${jvm-arguments}</argLine>
102+
<argLine>${jvm-arguments}</argLine>
103103
<charset.encoding>UTF-8</charset.encoding>
104104
<project.build.sourceEncoding>${charset.encoding}</project.build.sourceEncoding>
105105
<project.build.resourceEncoding>${charset.encoding}</project.build.resourceEncoding>
@@ -285,7 +285,7 @@ under the License.
285285
<useManifestOnlyJar>false</useManifestOnlyJar>
286286
<redirectTestOutputToFile>true</redirectTestOutputToFile>
287287
<reportsDirectory>${project.build.directory}/test-output/${maven.build.timestamp}</reportsDirectory>
288-
<excludedGroups>${testng.generate-java-files},${testng.check-cpp-files}</excludedGroups>
288+
<excludedGroups>${testng.generate-java-files},${testng.check-cpp-files},${testng.check-go-files}</excludedGroups>
289289
</configuration>
290290
</plugin>
291291

@@ -657,8 +657,9 @@ under the License.
657657
<groupId>org.apache.maven.plugins</groupId>
658658
<artifactId>maven-surefire-plugin</artifactId>
659659
<configuration>
660-
<groups>${testng.check-cpp-files}</groups>
661-
<excludedGroups>${testng.generate-java-files},${testng.check-cpp-files},${testng.check-cpp-historical-files}</excludedGroups>
660+
<groups>${testng.check-go-files}</groups>
661+
<excludedGroups>${testng.generate-java-files},${testng.check-cpp-files},${testng.check-cpp-historical-files}
662+
</excludedGroups>
662663
</configuration>
663664
</plugin>
664665
</plugins>

0 commit comments

Comments
 (0)