- 修改 shouldVerifyCacheManager_withMaximumIntegerTtl 为 shouldVerifyCacheManager_withMaximumAllowedTtl - 使用正确的最大TTL值(10080分钟,7天)而不是 Integer.MAX_VALUE - 新增 shouldThrowException_whenTtlExceedsMaximum 测试验证边界检查 - 所有1266个测试用例通过 - 覆盖率: 指令81.89%, 行88.48%, 分支51.55% docs: 添加项目状态报告 - 生成 PROJECT_STATUS_REPORT.md 详细记录项目当前状态 - 包含质量指标、已完成功能、待办事项和技术债务
82 lines
2.6 KiB
XML
82 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>org.postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
<version>42.6.0</version>
|
|
<name>PostgreSQL JDBC Driver</name>
|
|
<description>PostgreSQL JDBC Driver Postgresql</description>
|
|
<url>https://jdbc.postgresql.org</url>
|
|
<inceptionYear>1997</inceptionYear>
|
|
<organization>
|
|
<name>PostgreSQL Global Development Group</name>
|
|
<url>https://jdbc.postgresql.org/</url>
|
|
</organization>
|
|
<licenses>
|
|
<license>
|
|
<name>BSD-2-Clause</name>
|
|
<url>https://jdbc.postgresql.org/about/license.html</url>
|
|
<distribution>repo</distribution>
|
|
<comments>BSD-2-Clause, copyright PostgreSQL Global Development Group</comments>
|
|
</license>
|
|
</licenses>
|
|
<developers>
|
|
<developer>
|
|
<id>davecramer</id>
|
|
<name>Dave Cramer</name>
|
|
</developer>
|
|
<developer>
|
|
<id>jurka</id>
|
|
<name>Kris Jurka</name>
|
|
</developer>
|
|
<developer>
|
|
<id>oliver</id>
|
|
<name>Oliver Jowett</name>
|
|
</developer>
|
|
<developer>
|
|
<id>ringerc</id>
|
|
<name>Craig Ringer</name>
|
|
</developer>
|
|
<developer>
|
|
<id>vlsi</id>
|
|
<name>Vladimir Sitnikov</name>
|
|
</developer>
|
|
<developer>
|
|
<id>bokken</id>
|
|
<name>Brett Okken</name>
|
|
</developer>
|
|
</developers>
|
|
<mailingLists>
|
|
<mailingList>
|
|
<name>PostgreSQL JDBC development list</name>
|
|
<subscribe>https://lists.postgresql.org/</subscribe>
|
|
<unsubscribe>https://lists.postgresql.org/unsubscribe/</unsubscribe>
|
|
<post>pgsql-jdbc@postgresql.org</post>
|
|
<archive>https://www.postgresql.org/list/pgsql-jdbc/</archive>
|
|
</mailingList>
|
|
</mailingLists>
|
|
<scm>
|
|
<connection>scm:git:https://github.com/pgjdbc/pgjdbc.git</connection>
|
|
<developerConnection>scm:git:https://github.com/pgjdbc/pgjdbc.git</developerConnection>
|
|
<url>https://github.com/pgjdbc/pgjdbc</url>
|
|
</scm>
|
|
<issueManagement>
|
|
<system>GitHub issues</system>
|
|
<url>https://github.com/pgjdbc/pgjdbc/issues</url>
|
|
</issueManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.checkerframework</groupId>
|
|
<artifactId>checker-qual</artifactId>
|
|
<version>3.31.0</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.waffle</groupId>
|
|
<artifactId>waffle-jna</artifactId>
|
|
<version>1.9.1</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|