Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
dfc53aa
feat: optimize test
wardseptember Jan 16, 2026
3fbb6d0
feat: optimize test
wardseptember Jan 16, 2026
4a7f3ac
feat: optimize test
wardseptember Jan 16, 2026
ef5057d
feat: optimize trpc-container test
wardseptember Jan 16, 2026
c8f927e
Merge remote-tracking branch 'upstream/JDK17/Springboot3' into feat/o…
wardseptember Jan 19, 2026
8e6543c
feat: optimize trpc-core test
wardseptember Jan 19, 2026
146b627
feat: optimize trpc-core test
wardseptember Jan 19, 2026
cb67b58
feat: optimize trpc-core test
wardseptember Jan 20, 2026
0025a5b
feat: optimize ci and codecov
wardseptember Jan 20, 2026
135f762
feat: optimize trpc-transport test
wardseptember Jan 21, 2026
0ba0f08
Merge remote-tracking branch 'upstream/JDK17/Springboot3' into feat/o…
wardseptember Jan 27, 2026
67f3903
Merge remote-tracking branch 'upstream/JDK17/Springboot3' into feat/o…
wardseptember Feb 2, 2026
c989fc4
feat: optimize trpc-proto test
wardseptember Feb 2, 2026
7eb4de5
Merge remote-tracking branch 'upstream/JDK17/Springboot3' into feat/o…
wardseptember Feb 2, 2026
b0e9a55
feat: optimize trpc-spring-support test
wardseptember Feb 4, 2026
9a12cce
feat: optimize trpc-spring-support test
wardseptember Feb 4, 2026
d571975
feat: optimize trpc-spring-support test
wardseptember Feb 4, 2026
eaed7c3
Merge remote-tracking branch 'refs/remotes/upstream/JDK17/Springboot3…
wardseptember Feb 4, 2026
fccff83
feat: optimize trpc-spring-cloud-gateway test
wardseptember Feb 4, 2026
0a8c9e8
Merge remote-tracking branch 'upstream/JDK17/Springboot3' into feat/o…
wardseptember Feb 4, 2026
07af162
Merge remote-tracking branch 'upstream/JDK17/Springboot3' into feat/o…
wardseptember Feb 6, 2026
60fdccc
feat: optimize trpc-spring-boot-starter test
wardseptember Feb 9, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: optimize test
  • Loading branch information
wardseptember committed Jan 16, 2026
commit 4a7f3aca7dda01465449f19707a09d7f7d8963a5
67 changes: 46 additions & 21 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@
<maven.compiler.release>17</maven.compiler.release>

<maven.test.skip>false</maven.test.skip>
<maven.ignore.testfailure>false</maven.ignore.testfailure>
<maven.deploy.skip>false</maven.deploy.skip>
<maven.compiler.version>3.11.0</maven.compiler.version>
<maven.surefire.version>3.0.0-M9</maven.surefire.version>
Expand All @@ -99,6 +100,7 @@
<maven.exec.version>3.1.0</maven.exec.version>
<maven.gpg.version>3.1.0</maven.gpg.version>

<jacoco.version>0.8.11</jacoco.version>
<central-publishing-maven-plugin.version>0.7.0</central-publishing-maven-plugin.version>
<exec.maven.version>3.1.0</exec.maven.version>
<junit.version>5.14.2</junit.version>
Expand Down Expand Up @@ -137,17 +139,10 @@
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<!-- 保留 JUnit 4 测试 todo 删除-->
<!-- <dependency>-->
<!-- <groupId>junit</groupId>-->
<!-- <artifactId>junit</artifactId>-->
<!-- <version>4.13.2</version>-->
<!-- <scope>test</scope>-->
<!-- </dependency>-->
<dependency>
<groupId>org.jacoco</groupId>
<artifactId>org.jacoco.agent</artifactId>
<version>0.8.11</version>
<version>${jacoco.version}</version>
<classifier>runtime</classifier>
<scope>test</scope>
</dependency>
Expand Down Expand Up @@ -183,14 +178,14 @@
<argLine>
--add-opens java.base/java.lang=ALL-UNNAMED
--add-opens java.base/java.util=ALL-UNNAMED
--add-opens java.base/java.io=ALL-UNNAMED
</argLine>
<testFailureIgnore>${maven.ignore.testfailure}</testFailureIgnore>
<skipTests>false</skipTests>
<systemPropertyVariables>
<jacoco-agent.destfile>${project.build.directory}/coverage.exec
</jacoco-agent.destfile>
</systemPropertyVariables>
<reportsDirectory>../../site/junit</reportsDirectory>
<useSystemClassLoader>false</useSystemClassLoader>
<forkCount>1</forkCount>
<reuseForks>true</reuseForks>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -256,22 +251,22 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.8</version>
<version>${jacoco.version}</version>
<configuration>
<skip>false</skip>
<destFile>${project.build.directory}/coverage.exec</destFile>
<append>true</append>
</configuration>
<executions>
<execution>
<id>default-instrument</id>
<id>prepare-agent</id>
<goals>
<goal>instrument</goal>
</goals>
</execution>
<execution>
<id>default-restore-instrumented-classes</id>
<goals>
<goal>restore-instrumented-classes</goal>
<goal>prepare-agent</goal>
</goals>
<configuration>
<propertyName>surefireArgLine</propertyName>
<destFile>${project.build.directory}/coverage.exec</destFile>
</configuration>
</execution>
<execution>
<id>report</id>
Expand All @@ -284,13 +279,39 @@
<outputDirectory>../../site/${project.artifactId}</outputDirectory>
</configuration>
</execution>
<execution>
<id>aggregate</id>
<phase>verify</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>${exec.maven.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${maven.failsafe.version}</version>
<configuration>
<argLine>
--add-opens java.base/java.lang=ALL-UNNAMED
--add-opens java.base/java.util=ALL-UNNAMED
</argLine>
</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>

Expand All @@ -311,6 +332,10 @@
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
</plugin>
</plugins>
</build>

Expand Down