This is an automated email from the ASF dual-hosted git repository. hqtran pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 8d39ab40a841ba6054360b5741a370e86e782250 Author: Quan Tran <[email protected]> AuthorDate: Wed Sep 17 09:57:33 2025 +0700 [BUILD] [postgres-jmap-rfc-8621-integration-tests] Run only basic feature tag tests Given the Postgres implementation is finished, Postgres JMAP integration tests could be run in the same basic mode as other apps to save build time. --- .../pom.xml | 28 +++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/server/protocols/jmap-rfc-8621-integration-tests/postgres-jmap-rfc-8621-integration-tests/pom.xml b/server/protocols/jmap-rfc-8621-integration-tests/postgres-jmap-rfc-8621-integration-tests/pom.xml index 95a5500767..8369312420 100644 --- a/server/protocols/jmap-rfc-8621-integration-tests/postgres-jmap-rfc-8621-integration-tests/pom.xml +++ b/server/protocols/jmap-rfc-8621-integration-tests/postgres-jmap-rfc-8621-integration-tests/pom.xml @@ -101,11 +101,37 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> + <argLine>-Djava.library.path= + -javaagent:"${settings.localRepository}"/org/jacoco/org.jacoco.agent/${jacoco-maven-plugin.version}/org.jacoco.agent-${jacoco-maven-plugin.version}-runtime.jar=destfile=${basedir}/target/jacoco.exec + -Xms512m -Xmx2048m</argLine> <forkedProcessTimeoutInSeconds>3600</forkedProcessTimeoutInSeconds> <reuseForks>true</reuseForks> - <forkCount>2</forkCount> + <groups combine.self="override">BasicFeature</groups> + <excludedGroups>unstable</excludedGroups> + <properties> + <includeTags>junit5</includeTags> + </properties> </configuration> </plugin> </plugins> </build> + <profiles> + <profile> + <id>unstable-tests</id> + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <excludedGroups/> + <groups>unstable</groups> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> + </profile> + </profiles> </project> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
