- 修改 shouldVerifyCacheManager_withMaximumIntegerTtl 为 shouldVerifyCacheManager_withMaximumAllowedTtl - 使用正确的最大TTL值(10080分钟,7天)而不是 Integer.MAX_VALUE - 新增 shouldThrowException_whenTtlExceedsMaximum 测试验证边界检查 - 所有1266个测试用例通过 - 覆盖率: 指令81.89%, 行88.48%, 分支51.55% docs: 添加项目状态报告 - 生成 PROJECT_STATUS_REPORT.md 详细记录项目当前状态 - 包含质量指标、已完成功能、待办事项和技术债务
96 lines
3.3 KiB
XML
96 lines
3.3 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">
|
|
<!-- This module was also published with a richer model, Gradle metadata, -->
|
|
<!-- which should be used instead. Do not delete the following line which -->
|
|
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
|
|
<!-- that they should prefer consuming it instead. -->
|
|
<!-- do_not_remove: published-with-gradle-metadata -->
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.springframework.amqp</groupId>
|
|
<artifactId>spring-amqp-bom</artifactId>
|
|
<version>3.1.0</version>
|
|
<packaging>pom</packaging>
|
|
<name>Spring for RabbitMQ (Bill of Materials)</name>
|
|
<description>Spring for RabbitMQ (Bill of Materials)</description>
|
|
<url>https://github.com/spring-projects/spring-amqp</url>
|
|
<organization>
|
|
<name>Spring IO</name>
|
|
<url>https://spring.io/projects/spring-amqp</url>
|
|
</organization>
|
|
<licenses>
|
|
<license>
|
|
<name>Apache License, Version 2.0</name>
|
|
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
<developers>
|
|
<developer>
|
|
<id>garyrussell</id>
|
|
<name>Gary Russell</name>
|
|
<email>grussell@vmware.com</email>
|
|
<roles>
|
|
<role>project lead</role>
|
|
</roles>
|
|
</developer>
|
|
<developer>
|
|
<id>artembilan</id>
|
|
<name>Artem Bilan</name>
|
|
<email>abilan@vmware.com</email>
|
|
</developer>
|
|
<developer>
|
|
<id>davesyer</id>
|
|
<name>Dave Syer</name>
|
|
<email>dsyer@vmware.com</email>
|
|
</developer>
|
|
<developer>
|
|
<id>markfisher</id>
|
|
<name>Mark Fisher</name>
|
|
<email>markfisher@vmware.com</email>
|
|
</developer>
|
|
<developer>
|
|
<id>markpollack</id>
|
|
<name>Mark Pollack</name>
|
|
<email>mpollack@vmware.com</email>
|
|
</developer>
|
|
</developers>
|
|
<scm>
|
|
<connection>git://github.com/spring-projects/spring-amqp.git</connection>
|
|
<developerConnection>git@github.com:spring-projects/spring-amqp.git</developerConnection>
|
|
<url>https://github.com/spring-projects/spring-amqp</url>
|
|
</scm>
|
|
<issueManagement>
|
|
<system>GitHub</system>
|
|
<url>https://jira.spring.io/browse/AMQP</url>
|
|
</issueManagement>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.amqp</groupId>
|
|
<artifactId>spring-amqp</artifactId>
|
|
<version>3.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.amqp</groupId>
|
|
<artifactId>spring-rabbit</artifactId>
|
|
<version>3.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.amqp</groupId>
|
|
<artifactId>spring-rabbit-junit</artifactId>
|
|
<version>3.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.amqp</groupId>
|
|
<artifactId>spring-rabbit-stream</artifactId>
|
|
<version>3.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.amqp</groupId>
|
|
<artifactId>spring-rabbit-test</artifactId>
|
|
<version>3.1.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
</project>
|