- 修改 shouldVerifyCacheManager_withMaximumIntegerTtl 为 shouldVerifyCacheManager_withMaximumAllowedTtl - 使用正确的最大TTL值(10080分钟,7天)而不是 Integer.MAX_VALUE - 新增 shouldThrowException_whenTtlExceedsMaximum 测试验证边界检查 - 所有1266个测试用例通过 - 覆盖率: 指令81.89%, 行88.48%, 分支51.55% docs: 添加项目状态报告 - 生成 PROJECT_STATUS_REPORT.md 详细记录项目当前状态 - 包含质量指标、已完成功能、待办事项和技术债务
110 lines
3.9 KiB
XML
110 lines
3.9 KiB
XML
<?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 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
<parent>
|
|
<artifactId>docker-java-parent</artifactId>
|
|
<groupId>com.github.docker-java</groupId>
|
|
<version>3.3.3</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>docker-java-transport-zerodep</artifactId>
|
|
<name>docker-java-transport-zerodep</name>
|
|
<description>Java API Client for Docker</description>
|
|
<url>https://github.com/docker-java/docker-java</url>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.github.siom79.japicmp</groupId>
|
|
<artifactId>japicmp-maven-plugin</artifactId>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.felix</groupId>
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
<extensions>true</extensions>
|
|
<configuration>
|
|
<instructions>
|
|
<Export-Package>com.github.dockerjava.zerodep.*</Export-Package>
|
|
</instructions>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<createDependencyReducedPom>true</createDependencyReducedPom>
|
|
<promoteTransitiveDependencies>true</promoteTransitiveDependencies>
|
|
<createSourcesJar>true</createSourcesJar>
|
|
<artifactSet>
|
|
<excludes>
|
|
<exclude>com.github.docker-java:docker-java-transport</exclude>
|
|
<exclude>net.java.dev.jna:jna-platform</exclude>
|
|
<exclude>net.java.dev.jna:*</exclude>
|
|
<exclude>org.slf4j:slf4j-api</exclude>
|
|
</excludes>
|
|
</artifactSet>
|
|
<filters>
|
|
<filter>
|
|
<artifact>com.github.docker-java:docker-java-transport-httpclient5</artifact>
|
|
<excludes>
|
|
<exclude>com/github/dockerjava/httpclient5/ApacheDockerHttpClient.class</exclude>
|
|
<exclude>com/github/dockerjava/httpclient5/ApacheDockerHttpClient$*</exclude>
|
|
</excludes>
|
|
</filter>
|
|
<filter>
|
|
<artifact>org.apache.httpcomponents.client5:httpclient5</artifact>
|
|
<excludes>
|
|
<exclude>mozilla/*</exclude>
|
|
</excludes>
|
|
</filter>
|
|
</filters>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>org.apache</pattern>
|
|
<shadedPattern>com.github.dockerjava.zerodep.shaded.org.apache</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>com.github.dockerjava.httpclient5</pattern>
|
|
<shadedPattern>com.github.dockerjava.zerodep</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
<transformers>
|
|
<transformer />
|
|
</transformers>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.github.docker-java</groupId>
|
|
<artifactId>docker-java-transport</artifactId>
|
|
<version>3.3.3</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>1.7.25</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.java.dev.jna</groupId>
|
|
<artifactId>jna</artifactId>
|
|
<version>5.12.1</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<properties>
|
|
<automatic.module.name>com.github.dockerjava.transport.zerodep</automatic.module.name>
|
|
</properties>
|
|
</project>
|