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:
Your Name
2026-03-02 13:31:54 +08:00
parent 32d6449ea4
commit 91a0b77f7a
2272 changed files with 221995 additions and 503 deletions

View File

@@ -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:45 CST 2026
jandex-parent-3.0.5.pom>aliyunmaven=

View File

@@ -0,0 +1,154 @@
<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 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.smallrye</groupId>
<artifactId>smallrye-build-parent</artifactId>
<version>31</version>
</parent>
<groupId>io.smallrye</groupId>
<artifactId>jandex-parent</artifactId>
<version>3.0.5</version>
<packaging>pom</packaging>
<name>Jandex: Parent</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<version.ant>1.10.11</version.ant>
<version.bridger>1.6.Final</version.bridger>
<version.bytebuddy>1.11.13</version.bytebuddy>
<version.exec-maven-plugin>3.0.0</version.exec-maven-plugin>
<version.junit>5.8.2</version.junit>
<version.maven>3.8.1</version.maven>
<version.maven-bundle-plugin>5.1.2</version.maven-bundle-plugin>
<version.maven-compiler-plugin>3.10.1</version.maven-compiler-plugin>
<version.maven-dependency-plugin>3.3.0</version.maven-dependency-plugin>
<version.maven-invoker-plugin>3.2.2</version.maven-invoker-plugin>
<version.maven-plugin-tools>3.6.1</version.maven-plugin-tools>
<version.maven-shade-plugin>3.3.0</version.maven-shade-plugin>
<version.nexus-staging-maven-plugin>1.6.13</version.nexus-staging-maven-plugin>
<version.mvn-jlink-wrapper>1.1.1</version.mvn-jlink-wrapper>
<version.plexus-compiler-eclipse>2.11.1</version.plexus-compiler-eclipse>
<version.plexus-utils>3.4.1</version.plexus-utils>
</properties>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/smallrye/jandex/issues</url>
</issueManagement>
<scm>
<connection>scm:git:git@github.com:smallrye/jandex.git</connection>
<developerConnection>scm:git:git@github.com:smallrye/jandex.git</developerConnection>
<url>https://github.com/smallrye/jandex/</url>
<tag>3.0.5</tag>
</scm>
<modules>
<module>core</module>
<module>maven-plugin</module>
<module>test-data</module>
<module>benchmarks</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.smallrye</groupId>
<artifactId>jandex</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.smallrye</groupId>
<artifactId>jandex-test-data</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>${version.bytebuddy}</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>${version.ant}</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>${version.maven}</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>${version.maven}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>${version.maven-plugin-tools}</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>${version.plexus-utils}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${version.junit}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${version.maven-compiler-plugin}</version>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${version.nexus-staging-maven-plugin}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>compiler-release-option</id>
<activation>
<jdk>[9,)</jdk>
</activation>
<properties>
<!-- setting this in a profile because the Java 8 compiler doesn't know the `release` option -->
<maven.compiler.release>8</maven.compiler.release>
</properties>
</profile>
<profile>
<id>release</id>
<activation>
<property>
<name>!release.maven.bug.always.be.active</name>
</property>
</activation>
<modules>
<module>release</module>
</modules>
</profile>
</profiles>
</project>

View File

@@ -0,0 +1 @@
bdbaf275a39d93dfaafa719f23212ba255f3af68

View File

@@ -0,0 +1,4 @@
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#Sat Jan 31 09:39:05 CST 2026
jandex-3.0.5.pom>aliyunmaven=
jandex-3.0.5.jar>aliyunmaven=

View File

@@ -0,0 +1 @@
c548a4871b552292dbdd65409d3fda145c8925c1

View File

@@ -0,0 +1,171 @@
<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 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.smallrye</groupId>
<artifactId>jandex-parent</artifactId>
<version>3.0.5</version>
</parent>
<artifactId>jandex</artifactId>
<packaging>bundle</packaging>
<name>Jandex: Core</name>
<dependencies>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.smallrye</groupId>
<artifactId>jandex-test-data</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<charset>UTF-8</charset>
<encoding>UTF-8</encoding>
<docencoding>UTF-8</docencoding>
<breakiterator>true</breakiterator>
<version>true</version>
<author>true</author>
<keywords>true</keywords>
<additionalOptions>
--allow-script-in-comments
</additionalOptions>
<docfilessubdirs>true</docfilessubdirs>
<top><![CDATA[
<script src="doc-files/addSyntax.js" type="text/javascript"></script>
<script src="doc-files/shCore.js" type="text/javascript"></script>
<script src="doc-files/shBrushJava.js" type="text/javascript"></script>
]]></top>
<bottom><![CDATA[
<script type="text/javascript">
SyntaxHighlighter.defaults["auto-links"] = false;
SyntaxHighlighter.defaults["gutter"] = false;
SyntaxHighlighter.defaults["toolbar"] = false;
SyntaxHighlighter.all();
</script>
]]></bottom>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>${version.maven-bundle-plugin}</version>
<extensions>true</extensions>
<configuration>
<archive>
<index>true</index>
<manifest>
<mainClass>org.jboss.jandex.Main</mainClass>
</manifest>
<manifestEntries>
<Automatic-Module-Name>org.jboss.jandex</Automatic-Module-Name>
</manifestEntries>
</archive>
<instructions>
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<Export-Package>
org.jboss.jandex;version="${project.version}"
</Export-Package>
<Import-Package>
org.apache.tools.ant;resolution:=optional,
org.apache.tools.ant.types;resolution:=optional,
*
</Import-Package>
<!-- Without the -nouses BND directive, the org.jboss.jandex export will get the optional
ant packages in a "uses" clause. -->
<_nouses>true</_nouses>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.jboss.bridger</groupId>
<artifactId>bridger</artifactId>
<version>${version.bridger}</version>
<executions>
<execution>
<id>weave</id>
<phase>process-classes</phase>
<goals>
<goal>transform</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>ecj</id>
<activation>
<property>
<name>compiler</name>
<value>ecj</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerId>eclipse</compilerId>
</configuration>
<dependencies>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-compiler-eclipse</artifactId>
<version>${version.plexus-compiler-eclipse}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>parameters</id>
<activation>
<property>
<name>parameters</name>
<value>true</value>
</property>
</activation>
<properties>
<maven.compiler.parameters>true</maven.compiler.parameters>
</properties>
</profile>
</profiles>
</project>

View File

@@ -0,0 +1 @@
a962ca4cab575f4bc323acfea2ecdd9bc323c6c8

View File

@@ -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:45 CST 2026
smallrye-build-parent-31.pom>aliyunmaven=

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1 @@
ea74358f488f965815332d421f84dfa5365fecaf