- 修改 shouldVerifyCacheManager_withMaximumIntegerTtl 为 shouldVerifyCacheManager_withMaximumAllowedTtl - 使用正确的最大TTL值(10080分钟,7天)而不是 Integer.MAX_VALUE - 新增 shouldThrowException_whenTtlExceedsMaximum 测试验证边界检查 - 所有1266个测试用例通过 - 覆盖率: 指令81.89%, 行88.48%, 分支51.55% docs: 添加项目状态报告 - 生成 PROJECT_STATUS_REPORT.md 详细记录项目当前状态 - 包含质量指标、已完成功能、待办事项和技术债务
80 lines
2.6 KiB
XML
80 lines
2.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>io.rsocket</groupId>
|
|
<artifactId>rsocket-bom</artifactId>
|
|
<version>1.1.3</version>
|
|
<packaging>pom</packaging>
|
|
<name>rsocket-bom</name>
|
|
<description>RSocket Java Bill of materials.</description>
|
|
<url>http://rsocket.io</url>
|
|
<licenses>
|
|
<license>
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
<developers>
|
|
<developer>
|
|
<id>rdegnan</id>
|
|
<name>Ryland Degnan</name>
|
|
<email>ryland@netifi.com</email>
|
|
</developer>
|
|
<developer>
|
|
<id>yschimke</id>
|
|
<name>Yuri Schimke</name>
|
|
<email>yuri@schimke.ee</email>
|
|
</developer>
|
|
<developer>
|
|
<id>OlegDokuka</id>
|
|
<name>Oleh Dokuka</name>
|
|
<email>oleh.dokuka@icloud.com</email>
|
|
</developer>
|
|
<developer>
|
|
<id>rstoyanchev</id>
|
|
<name>Rossen Stoyanchev</name>
|
|
<email>rstoyanchev@vmware.com</email>
|
|
</developer>
|
|
</developers>
|
|
<scm>
|
|
<connection>scm:git:https://github.com/rsocket/rsocket-java.git</connection>
|
|
<developerConnection>scm:git:https://github.com/rsocket/rsocket-java.git</developerConnection>
|
|
<url>https://github.com/rsocket/rsocket-java</url>
|
|
</scm>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.rsocket</groupId>
|
|
<artifactId>rsocket-core</artifactId>
|
|
<version>1.1.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.rsocket</groupId>
|
|
<artifactId>rsocket-load-balancer</artifactId>
|
|
<version>1.1.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.rsocket</groupId>
|
|
<artifactId>rsocket-micrometer</artifactId>
|
|
<version>1.1.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.rsocket</groupId>
|
|
<artifactId>rsocket-test</artifactId>
|
|
<version>1.1.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.rsocket</groupId>
|
|
<artifactId>rsocket-transport-local</artifactId>
|
|
<version>1.1.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.rsocket</groupId>
|
|
<artifactId>rsocket-transport-netty</artifactId>
|
|
<version>1.1.3</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
</project>
|