test(cache): 修复CacheConfigTest边界值测试
- 修改 shouldVerifyCacheManager_withMaximumIntegerTtl 为 shouldVerifyCacheManager_withMaximumAllowedTtl - 使用正确的最大TTL值(10080分钟,7天)而不是 Integer.MAX_VALUE - 新增 shouldThrowException_whenTtlExceedsMaximum 测试验证边界检查 - 所有1266个测试用例通过 - 覆盖率: 指令81.89%, 行88.48%, 分支51.55% docs: 添加项目状态报告 - 生成 PROJECT_STATUS_REPORT.md 详细记录项目当前状态 - 包含质量指标、已完成功能、待办事项和技术债务
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Jan 31 09:38:41 CST 2026
|
||||
logging-parent-1.0.1.Final.pom>aliyunmaven=
|
||||
@@ -0,0 +1,134 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<parent>
|
||||
<groupId>org.jboss</groupId>
|
||||
<artifactId>jboss-parent</artifactId>
|
||||
<version>39</version>
|
||||
<relativePath/>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>org.jboss.logging</groupId>
|
||||
<artifactId>logging-parent</artifactId>
|
||||
<version>1.0.1.Final</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<url>https://jboss.org</url>
|
||||
|
||||
<scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false"
|
||||
child.scm.url.inherit.append.path="false">
|
||||
<connection>scm:git:git://github.com/jboss-logging/logging-dev-tools.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:jboss-logging/logging-dev-tools.git</developerConnection>
|
||||
<url>https://github.com/jboss-logging/logging-dev-tools/tree/main/</url>
|
||||
<tag>HEAD</tag>
|
||||
</scm>
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<name>James R. Perkins</name>
|
||||
<email>jperkins@redhat.com</email>
|
||||
<organization>Red Hat, Inc.</organization>
|
||||
<organizationUrl>https://redhat.com</organizationUrl>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Apache License 2.0</name>
|
||||
<url>https://repository.jboss.org/licenses/apache-2.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
|
||||
<properties>
|
||||
<!-- Configuration properties -->
|
||||
<skipFormatting>false</skipFormatting>
|
||||
<maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
|
||||
|
||||
<!-- Default to Java 11 -->
|
||||
<jdk.min.version>11</jdk.min.version>
|
||||
<maven.compiler.target>11</maven.compiler.target>
|
||||
<maven.compiler.source>11</maven.compiler.source>
|
||||
<maven.compiler.release>${maven.compiler.target}</maven.compiler.release>
|
||||
|
||||
<version.compiler.plugin>3.11.0</version.compiler.plugin>
|
||||
<version.surefire.plugin>3.1.0</version.surefire.plugin>
|
||||
<version.formatter.maven.plugin>2.23.0</version.formatter.maven.plugin>
|
||||
<version.impsort.maven.plugin>1.9.0</version.impsort.maven.plugin>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<release>${maven.compiler.release}</release>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<redirectTestOutputToFile>${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>net.revelc.code.formatter</groupId>
|
||||
<artifactId>formatter-maven-plugin</artifactId>
|
||||
<version>${version.formatter.maven.plugin}</version>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.jboss.logging</groupId>
|
||||
<artifactId>ide-config</artifactId>
|
||||
<version>1.0.1.Final</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<configuration>
|
||||
<!-- store outside of target to speed up formatting when mvn clean is used -->
|
||||
<cachedir>.cache</cachedir>
|
||||
<configFile>eclipse-code-formatter.xml</configFile>
|
||||
<configXmlFile>jboss-logging-xml.properties</configXmlFile>
|
||||
<lineEnding>LF</lineEnding>
|
||||
<includeResources>true</includeResources>
|
||||
<removeTrailingWhitespace>true</removeTrailingWhitespace>
|
||||
<skip>${skipFormatting}</skip>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>format</id>
|
||||
<goals>
|
||||
<goal>format</goal>
|
||||
</goals>
|
||||
<phase>process-sources</phase>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>net.revelc.code</groupId>
|
||||
<artifactId>impsort-maven-plugin</artifactId>
|
||||
<version>${version.impsort.maven.plugin}</version>
|
||||
<configuration>
|
||||
<!-- store outside of target to speed up formatting when mvn clean is used -->
|
||||
<cachedir>.cache</cachedir>
|
||||
<groups>java.,javax.,jakarta.,org.,com.</groups>
|
||||
<staticGroups>*</staticGroups>
|
||||
<skip>${skipFormatting}</skip>
|
||||
<removeUnused>true</removeUnused>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sort-imports</id>
|
||||
<goals>
|
||||
<goal>sort</goal>
|
||||
</goals>
|
||||
<phase>process-sources</phase>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
||||
@@ -0,0 +1 @@
|
||||
1efc675bb87e4b0aadb2e3944d14b4e6102294bc
|
||||
Reference in New Issue
Block a user