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:
@@ -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:21 CST 2026
|
||||
failureaccess-1.0.1.jar>aliyunmaven=
|
||||
failureaccess-1.0.1.pom>aliyunmaven=
|
||||
@@ -0,0 +1 @@
|
||||
1dcf1de382a0bf95a3d8b0849546c88bac1292c9
|
||||
@@ -0,0 +1,68 @@
|
||||
<?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">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>guava-parent</artifactId>
|
||||
<version>26.0-android</version>
|
||||
</parent>
|
||||
<artifactId>failureaccess</artifactId>
|
||||
<version>1.0.1</version>
|
||||
<packaging>bundle</packaging>
|
||||
<name>Guava InternalFutureFailureAccess and InternalFutures</name>
|
||||
<description>
|
||||
Contains
|
||||
com.google.common.util.concurrent.internal.InternalFutureFailureAccess and
|
||||
InternalFutures. Most users will never need to use this artifact. Its
|
||||
classes is conceptually a part of Guava, but they're in this separate
|
||||
artifact so that Android libraries can use them without pulling in all of
|
||||
Guava (just as they can use ListenableFuture by depending on the
|
||||
listenablefuture artifact).
|
||||
</description>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<extensions>true</extensions>
|
||||
<groupId>org.apache.felix</groupId>
|
||||
<artifactId>maven-bundle-plugin</artifactId>
|
||||
<version>2.5.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>bundle-manifest</id>
|
||||
<phase>process-classes</phase>
|
||||
<goals>
|
||||
<goal>manifest</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<instructions>
|
||||
<Export-Package>com.google.common.util.concurrent.internal</Export-Package>
|
||||
<Bundle-DocURL>https://github.com/google/guava/</Bundle-DocURL>
|
||||
</instructions>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-docs</id>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>generate-javadoc-site-report</id>
|
||||
<phase>site</phase>
|
||||
<goals><goal>javadoc</goal></goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
@@ -0,0 +1 @@
|
||||
e8160e78fdaaf7088621dc1649d9dd2dfcf8d0e8
|
||||
@@ -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:54 CST 2026
|
||||
guava-parent-21.0.pom>aliyunmaven=
|
||||
313
.m2/com/google/guava/guava-parent/21.0/guava-parent-21.0.pom
Normal file
313
.m2/com/google/guava/guava-parent/21.0/guava-parent-21.0.pom
Normal file
@@ -0,0 +1,313 @@
|
||||
<?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">
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>org.sonatype.oss</groupId>
|
||||
<artifactId>oss-parent</artifactId>
|
||||
<version>7</version>
|
||||
</parent>
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>guava-parent</artifactId>
|
||||
<version>21.0</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>Guava Maven Parent</name>
|
||||
<url>https://github.com/google/guava</url>
|
||||
<properties>
|
||||
<gpg.skip>true</gpg.skip>
|
||||
<!-- Override this with -Dtest.include="**/SomeTest.java" on the CLI -->
|
||||
<test.include>**/*Test.java</test.include>
|
||||
<truth.version>0.31</truth.version>
|
||||
<animal.sniffer.version>1.14</animal.sniffer.version>
|
||||
</properties>
|
||||
<issueManagement>
|
||||
<system>GitHub Issues</system>
|
||||
<url>https://github.com/google/guava/issues</url>
|
||||
</issueManagement>
|
||||
<inceptionYear>2010</inceptionYear>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>The Apache Software License, Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<prerequisites>
|
||||
<maven>3.0.3</maven>
|
||||
</prerequisites>
|
||||
<scm>
|
||||
<connection>scm:git:https://github.com/google/guava.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:google/guava.git</developerConnection>
|
||||
<url>https://github.com/google/guava</url>
|
||||
</scm>
|
||||
<developers>
|
||||
<developer>
|
||||
<id>kevinb9n</id>
|
||||
<name>Kevin Bourrillion</name>
|
||||
<email>kevinb@google.com</email>
|
||||
<organization>Google</organization>
|
||||
<organizationUrl>http://www.google.com</organizationUrl>
|
||||
<roles>
|
||||
<role>owner</role>
|
||||
<role>developer</role>
|
||||
</roles>
|
||||
<timezone>-8</timezone>
|
||||
</developer>
|
||||
</developers>
|
||||
<ciManagement>
|
||||
<system>Travis CI</system>
|
||||
<url>https://travis-ci.org/google/guava</url>
|
||||
</ciManagement>
|
||||
<modules>
|
||||
<module>guava</module>
|
||||
<module>guava-gwt</module>
|
||||
<module>guava-testlib</module>
|
||||
<module>guava-tests</module>
|
||||
</modules>
|
||||
<build>
|
||||
<!-- Handle where Guava deviates from Maven defaults -->
|
||||
<sourceDirectory>src</sourceDirectory>
|
||||
<testSourceDirectory>test</testSourceDirectory>
|
||||
<resources>
|
||||
<resource>
|
||||
<directory>src</directory>
|
||||
<excludes>
|
||||
<exclude>**/*.java</exclude>
|
||||
</excludes>
|
||||
</resource>
|
||||
</resources>
|
||||
<testResources>
|
||||
<testResource>
|
||||
<directory>test</directory>
|
||||
<excludes>
|
||||
<exclude>**/*.java</exclude>
|
||||
</excludes>
|
||||
</testResource>
|
||||
</testResources>
|
||||
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.4</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sign-artifacts</id>
|
||||
<phase>verify</phase>
|
||||
<goals><goal>sign</goal></goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>2.3.2</version>
|
||||
<configuration>
|
||||
<source>1.8</source>
|
||||
<target>1.8</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<version>2.3.1</version>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>**/ForceGuavaCompilation*</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>2.1.2</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-sources</id>
|
||||
<phase>post-integration-test</phase>
|
||||
<goals><goal>jar</goal></goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>**/ForceGuavaCompilation*</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
||||
<version>${animal.sniffer.version}</version>
|
||||
<configuration>
|
||||
<signature>
|
||||
<groupId>org.codehaus.mojo.signature</groupId>
|
||||
<artifactId>java18</artifactId>
|
||||
<version>1.0</version>
|
||||
</signature>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>check-java-version-compatibility</id>
|
||||
<phase>test</phase>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>2.8</version>
|
||||
<configuration>
|
||||
<notimestamp>true</notimestamp>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-docs</id>
|
||||
<phase>post-integration-test</phase>
|
||||
<goals><goal>jar</goal></goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<version>2.10</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<version>1.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.7.2</version>
|
||||
<configuration>
|
||||
<includes>
|
||||
<include>${test.include}</include>
|
||||
</includes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
<distributionManagement>
|
||||
<site>
|
||||
<id>guava-site</id>
|
||||
<name>Guava Documentation Site</name>
|
||||
<url>scp://dummy.server/dontinstall/usestaging</url>
|
||||
</site>
|
||||
</distributionManagement>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.google.code.findbugs</groupId>
|
||||
<artifactId>jsr305</artifactId>
|
||||
<version>1.3.9</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.errorprone</groupId>
|
||||
<artifactId>error_prone_annotations</artifactId>
|
||||
<version>2.0.15</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.j2objc</groupId>
|
||||
<artifactId>j2objc-annotations</artifactId>
|
||||
<version>1.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.8.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.easymock</groupId>
|
||||
<artifactId>easymock</artifactId>
|
||||
<version>3.0</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.mockito</groupId>
|
||||
<artifactId>mockito-core</artifactId>
|
||||
<version>2.1.0</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.jimfs</groupId>
|
||||
<artifactId>jimfs</artifactId>
|
||||
<version>1.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.truth</groupId>
|
||||
<artifactId>truth</artifactId>
|
||||
<version>${truth.version}</version>
|
||||
<scope>test</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<!-- use the guava we're building. -->
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>guava</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.truth.extensions</groupId>
|
||||
<artifactId>truth-java8-extension</artifactId>
|
||||
<version>${truth.version}</version>
|
||||
<scope>test</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<!-- use the guava we're building. -->
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>guava</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.caliper</groupId>
|
||||
<artifactId>caliper</artifactId>
|
||||
<version>1.0-beta-2</version>
|
||||
<scope>test</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<!-- use the guava we're building. -->
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>guava</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>jdk8</id>
|
||||
<activation>
|
||||
<jdk>[1.8,)</jdk>
|
||||
</activation>
|
||||
<!-- Disable doclint under JDK 8 -->
|
||||
<reporting>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<configuration>
|
||||
<additionalparam>-Xdoclint:-html</additionalparam>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<configuration>
|
||||
<additionalparam>-Xdoclint:-html</additionalparam>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
@@ -0,0 +1 @@
|
||||
3566f35f82f03bebac041380e502be66b0355d02
|
||||
@@ -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:39:19 CST 2026
|
||||
guava-parent-26.0-android.pom>aliyunmaven=
|
||||
@@ -0,0 +1,293 @@
|
||||
<?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">
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>org.sonatype.oss</groupId>
|
||||
<artifactId>oss-parent</artifactId>
|
||||
<version>9</version>
|
||||
</parent>
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>guava-parent</artifactId>
|
||||
<version>26.0-android</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>Guava Maven Parent</name>
|
||||
<url>https://github.com/google/guava</url>
|
||||
<properties>
|
||||
<!-- Override this with -Dtest.include="**/SomeTest.java" on the CLI -->
|
||||
<test.include>%regex[.*.class]</test.include>
|
||||
<truth.version>0.41</truth.version>
|
||||
<animal.sniffer.version>1.14</animal.sniffer.version>
|
||||
<maven-javadoc-plugin.version>3.0.0</maven-javadoc-plugin.version>
|
||||
</properties>
|
||||
<issueManagement>
|
||||
<system>GitHub Issues</system>
|
||||
<url>https://github.com/google/guava/issues</url>
|
||||
</issueManagement>
|
||||
<inceptionYear>2010</inceptionYear>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>The Apache Software License, Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<prerequisites>
|
||||
<maven>3.0.3</maven>
|
||||
</prerequisites>
|
||||
<scm>
|
||||
<connection>scm:git:https://github.com/google/guava.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:google/guava.git</developerConnection>
|
||||
<url>https://github.com/google/guava</url>
|
||||
</scm>
|
||||
<developers>
|
||||
<developer>
|
||||
<id>kevinb9n</id>
|
||||
<name>Kevin Bourrillion</name>
|
||||
<email>kevinb@google.com</email>
|
||||
<organization>Google</organization>
|
||||
<organizationUrl>http://www.google.com</organizationUrl>
|
||||
<roles>
|
||||
<role>owner</role>
|
||||
<role>developer</role>
|
||||
</roles>
|
||||
<timezone>-8</timezone>
|
||||
</developer>
|
||||
</developers>
|
||||
<ciManagement>
|
||||
<system>Travis CI</system>
|
||||
<url>https://travis-ci.org/google/guava</url>
|
||||
</ciManagement>
|
||||
<modules>
|
||||
<module>guava</module>
|
||||
<module>guava-testlib</module>
|
||||
<module>guava-tests</module>
|
||||
</modules>
|
||||
<build>
|
||||
<!-- Handle where Guava deviates from Maven defaults -->
|
||||
<sourceDirectory>src</sourceDirectory>
|
||||
<testSourceDirectory>test</testSourceDirectory>
|
||||
<resources>
|
||||
<resource>
|
||||
<directory>src</directory>
|
||||
<excludes>
|
||||
<exclude>**/*.java</exclude>
|
||||
</excludes>
|
||||
</resource>
|
||||
</resources>
|
||||
<testResources>
|
||||
<testResource>
|
||||
<directory>test</directory>
|
||||
<excludes>
|
||||
<exclude>**/*.java</exclude>
|
||||
</excludes>
|
||||
</testResource>
|
||||
</testResources>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>${maven-javadoc-plugin.version}</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.6.1</version>
|
||||
<configuration>
|
||||
<source>1.7</source>
|
||||
<target>1.7</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<version>3.0.2</version>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>**/ForceGuavaCompilation*</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>2.1.2</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-sources</id>
|
||||
<phase>post-integration-test</phase>
|
||||
<goals><goal>jar</goal></goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>**/ForceGuavaCompilation*</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
||||
<version>${animal.sniffer.version}</version>
|
||||
<configuration>
|
||||
<signature>
|
||||
<groupId>org.codehaus.mojo.signature</groupId>
|
||||
<artifactId>java16-sun</artifactId>
|
||||
<version>1.10</version>
|
||||
</signature>
|
||||
<ignores>
|
||||
<!-- Unsafe isn't part of the documented Java 6 API, but it is available.
|
||||
And in cases where it's not, we have fallbacks. -->
|
||||
<ignore>sun.misc.Unsafe</ignore>
|
||||
</ignores>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>check-java-version-compatibility</id>
|
||||
<phase>test</phase>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>${maven-javadoc-plugin.version}</version>
|
||||
<configuration>
|
||||
<quiet>true</quiet>
|
||||
<notimestamp>true</notimestamp>
|
||||
<encoding>UTF-8</encoding>
|
||||
<docencoding>UTF-8</docencoding>
|
||||
<charset>UTF-8</charset>
|
||||
<additionalOptions>
|
||||
<additionalOption>-XDignore.symbol.file</additionalOption>
|
||||
<additionalOption>-Xdoclint:-html</additionalOption>
|
||||
</additionalOptions>
|
||||
<linksource>true</linksource>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-docs</id>
|
||||
<phase>post-integration-test</phase>
|
||||
<goals><goal>jar</goal></goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<version>2.10</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<version>1.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.7.2</version>
|
||||
<configuration>
|
||||
<includes>
|
||||
<include>${test.include}</include>
|
||||
</includes>
|
||||
<!-- By having our own entries here, we also override the default exclusion filter, which excludes all nested classes. -->
|
||||
<excludes>
|
||||
<!-- https://github.com/google/guava/issues/2840 -->
|
||||
<exclude>%regex[.*PackageSanityTests.*.class]</exclude>
|
||||
<!-- FeatureUtilTest.*ExampleDerivedInterfaceTester, com.google.common.io.*Tester, incidentally FeatureSpecificTestSuiteBuilderTest.MyAbstractTester (but we don't care either way because it's not meant to run on its own but works OK if it does)... but not NullPointerTesterTest, etc. -->
|
||||
<exclude>%regex[.*Tester.class]</exclude>
|
||||
<!-- Anonymous TestCase subclasses in GeneratedMonitorTest -->
|
||||
<exclude>%regex[.*[$]\d+.class]</exclude>
|
||||
</excludes>
|
||||
<redirectTestOutputToFile>true</redirectTestOutputToFile>
|
||||
<runOrder>alphabetical</runOrder>
|
||||
<!-- Set max heap for tests. -->
|
||||
<!-- Catch dependencies on the default locale by setting it to hi-IN. -->
|
||||
<argLine>-Xmx1536M -Duser.language=hi -Duser.country=IN</argLine>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
<distributionManagement>
|
||||
<site>
|
||||
<id>guava-site</id>
|
||||
<name>Guava Documentation Site</name>
|
||||
<url>scp://dummy.server/dontinstall/usestaging</url>
|
||||
</site>
|
||||
</distributionManagement>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.google.code.findbugs</groupId>
|
||||
<artifactId>jsr305</artifactId>
|
||||
<version>3.0.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.checkerframework</groupId>
|
||||
<artifactId>checker-compat-qual</artifactId>
|
||||
<version>2.5.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.errorprone</groupId>
|
||||
<artifactId>error_prone_annotations</artifactId>
|
||||
<version>2.1.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.j2objc</groupId>
|
||||
<artifactId>j2objc-annotations</artifactId>
|
||||
<version>1.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.11</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.easymock</groupId>
|
||||
<artifactId>easymock</artifactId>
|
||||
<version>3.0</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.mockito</groupId>
|
||||
<artifactId>mockito-core</artifactId>
|
||||
<version>2.19.0</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.jimfs</groupId>
|
||||
<artifactId>jimfs</artifactId>
|
||||
<version>1.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.truth</groupId>
|
||||
<artifactId>truth</artifactId>
|
||||
<version>${truth.version}</version>
|
||||
<scope>test</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<!-- use the guava we're building. -->
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>guava</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.caliper</groupId>
|
||||
<artifactId>caliper</artifactId>
|
||||
<version>1.0-beta-2</version>
|
||||
<scope>test</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<!-- use the guava we're building. -->
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>guava</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
</project>
|
||||
@@ -0,0 +1,2 @@
|
||||
|
||||
a2c0df489614352b7e8e503e274bd1dee5c42a64
|
||||
@@ -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:39:19 CST 2026
|
||||
guava-parent-28.2-android.pom>aliyunmaven=
|
||||
@@ -0,0 +1,367 @@
|
||||
<?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">
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>guava-parent</artifactId>
|
||||
<version>28.2-android</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>Guava Maven Parent</name>
|
||||
<description>Parent for guava artifacts</description>
|
||||
<url>https://github.com/google/guava</url>
|
||||
<properties>
|
||||
<!-- Override this with -Dtest.include="**/SomeTest.java" on the CLI -->
|
||||
<test.include>%regex[.*.class]</test.include>
|
||||
<truth.version>1.0</truth.version>
|
||||
<animal.sniffer.version>1.18</animal.sniffer.version>
|
||||
<maven-javadoc-plugin.version>3.1.0</maven-javadoc-plugin.version>
|
||||
<maven-source-plugin.version>3.2.0</maven-source-plugin.version>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
<issueManagement>
|
||||
<system>GitHub Issues</system>
|
||||
<url>https://github.com/google/guava/issues</url>
|
||||
</issueManagement>
|
||||
<inceptionYear>2010</inceptionYear>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Apache License, Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<scm>
|
||||
<connection>scm:git:https://github.com/google/guava.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:google/guava.git</developerConnection>
|
||||
<url>https://github.com/google/guava</url>
|
||||
</scm>
|
||||
<developers>
|
||||
<developer>
|
||||
<id>kevinb9n</id>
|
||||
<name>Kevin Bourrillion</name>
|
||||
<email>kevinb@google.com</email>
|
||||
<organization>Google</organization>
|
||||
<organizationUrl>http://www.google.com</organizationUrl>
|
||||
<roles>
|
||||
<role>owner</role>
|
||||
<role>developer</role>
|
||||
</roles>
|
||||
<timezone>-8</timezone>
|
||||
</developer>
|
||||
</developers>
|
||||
<ciManagement>
|
||||
<system>Travis CI</system>
|
||||
<url>https://travis-ci.org/google/guava</url>
|
||||
</ciManagement>
|
||||
<modules>
|
||||
<module>guava</module>
|
||||
<module>guava-bom</module>
|
||||
<module>guava-testlib</module>
|
||||
<module>guava-tests</module>
|
||||
</modules>
|
||||
<build>
|
||||
<!-- Handle where Guava deviates from Maven defaults -->
|
||||
<sourceDirectory>src</sourceDirectory>
|
||||
<testSourceDirectory>test</testSourceDirectory>
|
||||
<resources>
|
||||
<resource>
|
||||
<directory>src</directory>
|
||||
<excludes>
|
||||
<exclude>**/*.java</exclude>
|
||||
</excludes>
|
||||
</resource>
|
||||
</resources>
|
||||
<testResources>
|
||||
<testResource>
|
||||
<directory>test</directory>
|
||||
<excludes>
|
||||
<exclude>**/*.java</exclude>
|
||||
</excludes>
|
||||
</testResource>
|
||||
</testResources>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>enforce-versions</id>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<requireMavenVersion>
|
||||
<version>3.0.5</version>
|
||||
</requireMavenVersion>
|
||||
<requireJavaVersion>
|
||||
<version>1.8.0</version>
|
||||
</requireJavaVersion>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>${maven-javadoc-plugin.version}</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<configuration>
|
||||
<source>1.7</source>
|
||||
<target>1.7</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<version>3.2.0</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>${maven-source-plugin.version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-sources</id>
|
||||
<phase>post-integration-test</phase>
|
||||
<goals><goal>jar</goal></goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
||||
<version>${animal.sniffer.version}</version>
|
||||
<configuration>
|
||||
<annotations>com.google.common.util.concurrent.IgnoreJRERequirement</annotations>
|
||||
<signature>
|
||||
<groupId>org.codehaus.mojo.signature</groupId>
|
||||
<artifactId>java16-sun</artifactId>
|
||||
<version>1.10</version>
|
||||
</signature>
|
||||
<ignores>
|
||||
<!-- Unsafe isn't part of the documented Java 6 API, but it is available.
|
||||
And in cases where it's not, we have fallbacks. -->
|
||||
<ignore>sun.misc.Unsafe</ignore>
|
||||
</ignores>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>check-java-version-compatibility</id>
|
||||
<phase>test</phase>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>${maven-javadoc-plugin.version}</version>
|
||||
<configuration>
|
||||
<quiet>true</quiet>
|
||||
<notimestamp>true</notimestamp>
|
||||
<encoding>UTF-8</encoding>
|
||||
<docencoding>UTF-8</docencoding>
|
||||
<charset>UTF-8</charset>
|
||||
<additionalOptions>
|
||||
<additionalOption>-XDignore.symbol.file</additionalOption>
|
||||
<additionalOption>-Xdoclint:-html</additionalOption>
|
||||
</additionalOptions>
|
||||
<linksource>true</linksource>
|
||||
<source>8</source>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-docs</id>
|
||||
<phase>post-integration-test</phase>
|
||||
<goals><goal>jar</goal></goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<version>3.1.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<version>1.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.7.2</version>
|
||||
<configuration>
|
||||
<includes>
|
||||
<include>${test.include}</include>
|
||||
</includes>
|
||||
<!-- By having our own entries here, we also override the default exclusion filter, which excludes all nested classes. -->
|
||||
<excludes>
|
||||
<!-- https://github.com/google/guava/issues/2840 -->
|
||||
<exclude>%regex[.*PackageSanityTests.*.class]</exclude>
|
||||
<!-- FeatureUtilTest.*ExampleDerivedInterfaceTester, com.google.common.io.*Tester, incidentally FeatureSpecificTestSuiteBuilderTest.MyAbstractTester (but we don't care either way because it's not meant to run on its own but works OK if it does)... but not NullPointerTesterTest, etc. -->
|
||||
<exclude>%regex[.*Tester.class]</exclude>
|
||||
<!-- Anonymous TestCase subclasses in GeneratedMonitorTest -->
|
||||
<exclude>%regex[.*[$]\d+.class]</exclude>
|
||||
</excludes>
|
||||
<redirectTestOutputToFile>true</redirectTestOutputToFile>
|
||||
<runOrder>alphabetical</runOrder>
|
||||
<!-- Set max heap for tests. -->
|
||||
<!-- Catch dependencies on the default locale by setting it to hi-IN. -->
|
||||
<argLine>-Xmx1536M -Duser.language=hi -Duser.country=IN</argLine>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>3.0.0-M2</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
<distributionManagement>
|
||||
<snapshotRepository>
|
||||
<id>sonatype-nexus-snapshots</id>
|
||||
<name>Sonatype Nexus Snapshots</name>
|
||||
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
||||
</snapshotRepository>
|
||||
<repository>
|
||||
<id>sonatype-nexus-staging</id>
|
||||
<name>Nexus Release Repository</name>
|
||||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
||||
</repository>
|
||||
<site>
|
||||
<id>guava-site</id>
|
||||
<name>Guava Documentation Site</name>
|
||||
<url>scp://dummy.server/dontinstall/usestaging</url>
|
||||
</site>
|
||||
</distributionManagement>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.google.code.findbugs</groupId>
|
||||
<artifactId>jsr305</artifactId>
|
||||
<version>3.0.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.checkerframework</groupId>
|
||||
<artifactId>checker-compat-qual</artifactId>
|
||||
<version>2.5.5</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.errorprone</groupId>
|
||||
<artifactId>error_prone_annotations</artifactId>
|
||||
<version>2.3.4</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.j2objc</groupId>
|
||||
<artifactId>j2objc-annotations</artifactId>
|
||||
<version>1.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.12</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.easymock</groupId>
|
||||
<artifactId>easymock</artifactId>
|
||||
<version>3.0</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.mockito</groupId>
|
||||
<artifactId>mockito-core</artifactId>
|
||||
<version>2.19.0</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.jimfs</groupId>
|
||||
<artifactId>jimfs</artifactId>
|
||||
<version>1.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.truth</groupId>
|
||||
<artifactId>truth</artifactId>
|
||||
<version>${truth.version}</version>
|
||||
<scope>test</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<!-- use the guava we're building. -->
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>guava</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.caliper</groupId>
|
||||
<artifactId>caliper</artifactId>
|
||||
<version>1.0-beta-2</version>
|
||||
<scope>test</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<!-- use the guava we're building. -->
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>guava</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>sonatype-oss-release</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>${maven-source-plugin.version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-sources</id>
|
||||
<goals>
|
||||
<goal>jar-no-fork</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>${maven-javadoc-plugin.version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadocs</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.6</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sign-artifacts</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
@@ -0,0 +1 @@
|
||||
6db9079b12f809e8ab0f589d2e847a7a0bd9f4d2
|
||||
4
.m2/com/google/guava/guava/21.0/_remote.repositories
Normal file
4
.m2/com/google/guava/guava/21.0/_remote.repositories
Normal 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
|
||||
guava-21.0.jar>aliyunmaven=
|
||||
guava-21.0.pom>aliyunmaven=
|
||||
1
.m2/com/google/guava/guava/21.0/guava-21.0.jar.sha1
Normal file
1
.m2/com/google/guava/guava/21.0/guava-21.0.jar.sha1
Normal file
@@ -0,0 +1 @@
|
||||
3a3d111be1be1b745edfa7d91678a12d7ed38709
|
||||
185
.m2/com/google/guava/guava/21.0/guava-21.0.pom
Normal file
185
.m2/com/google/guava/guava/21.0/guava-21.0.pom
Normal file
@@ -0,0 +1,185 @@
|
||||
<?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">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>guava-parent</artifactId>
|
||||
<version>21.0</version>
|
||||
</parent>
|
||||
<artifactId>guava</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<name>Guava: Google Core Libraries for Java</name>
|
||||
<description>
|
||||
Guava is a suite of core and expanded libraries that include
|
||||
utility classes, google's collections, io classes, and much
|
||||
much more.
|
||||
|
||||
Guava has only one code dependency - javax.annotation,
|
||||
per the JSR-305 spec.
|
||||
</description>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.google.code.findbugs</groupId>
|
||||
<artifactId>jsr305</artifactId>
|
||||
<optional>true</optional><!-- needed only for annotations -->
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.errorprone</groupId>
|
||||
<artifactId>error_prone_annotations</artifactId>
|
||||
<optional>true</optional><!-- needed only for annotations -->
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.j2objc</groupId>
|
||||
<artifactId>j2objc-annotations</artifactId>
|
||||
<optional>true</optional><!-- needed only for annotations -->
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>animal-sniffer-annotations</artifactId>
|
||||
<version>${animal.sniffer.version}</version>
|
||||
<optional>true</optional><!-- needed only for annotations -->
|
||||
</dependency>
|
||||
<!-- TODO(cpovirk): does this comment belong on the <dependency> in <profiles>? -->
|
||||
<!-- TODO(cpovirk): want this only for dependency plugin but seems not to work there? Maven runs without failure, but the resulting Javadoc is missing the hoped-for inherited text -->
|
||||
</dependencies>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<extensions>true</extensions>
|
||||
<groupId>org.apache.felix</groupId>
|
||||
<artifactId>maven-bundle-plugin</artifactId>
|
||||
<version>2.5.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>bundle-manifest</id>
|
||||
<phase>process-classes</phase>
|
||||
<goals>
|
||||
<goal>manifest</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<instructions>
|
||||
<Export-Package>!com.google.common.base.internal,com.google.common.*</Export-Package>
|
||||
<Import-Package>
|
||||
javax.annotation;resolution:=optional,
|
||||
javax.crypto.*;resolution:=optional,
|
||||
sun.misc.*;resolution:=optional
|
||||
</Import-Package>
|
||||
<Bundle-DocURL>https://github.com/google/guava/</Bundle-DocURL>
|
||||
</instructions>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
</plugin>
|
||||
<!-- TODO(cpovirk): include JDK sources when building testlib doc, too -->
|
||||
<plugin>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>unpack-jdk-sources</id>
|
||||
<phase>site</phase>
|
||||
<goals><goal>unpack-dependencies</goal></goals>
|
||||
<configuration>
|
||||
<includeArtifactIds>srczip</includeArtifactIds>
|
||||
<outputDirectory>${project.build.directory}/jdk-sources</outputDirectory>
|
||||
<silent>false</silent>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<configuration>
|
||||
<encoding>UTF-8</encoding>
|
||||
<docencoding>UTF-8</docencoding>
|
||||
<charset>UTF-8</charset>
|
||||
<additionalparam>-XDignore.symbol.file</additionalparam>
|
||||
<excludePackageNames>com.google.common.base.internal</excludePackageNames>
|
||||
<linksource>true</linksource>
|
||||
<links>
|
||||
<link>http://docs.oracle.com/javase/8/docs/api/</link>
|
||||
<link>http://static.javadoc.io/com.google.code.findbugs/jsr305/3.0.1/</link>
|
||||
<link>http://errorprone.info/api/latest/</link>
|
||||
<link>http://static.javadoc.io/com.google.j2objc/j2objc-annotations/1.1/</link>
|
||||
</links>
|
||||
<!-- TODO(cpovirk): can we use includeDependencySources and a local com.oracle.java:jdk-lib:noversion:sources instead of all this unzipping and manual sourcepath modification? -->
|
||||
<sourcepath>${project.build.sourceDirectory}:${project.build.directory}/jdk-sources</sourcepath>
|
||||
<subpackages>com.google.common</subpackages>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-docs</id>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>generate-javadoc-site-report</id>
|
||||
<phase>site</phase>
|
||||
<goals><goal>javadoc</goal></goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>srczip</id>
|
||||
<activation>
|
||||
<file>
|
||||
<exists>${java.home}/../src.zip</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>jdk</groupId>
|
||||
<artifactId>srczip</artifactId>
|
||||
<version>999</version>
|
||||
<scope>system</scope>
|
||||
<systemPath>${java.home}/../src.zip</systemPath>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>jdk8</id>
|
||||
<activation>
|
||||
<jdk>[1.8,)</jdk>
|
||||
</activation>
|
||||
<!-- Disable doclint under JDK 8 -->
|
||||
<!-- This is defined in guava-parent as well, but we need it here too because the
|
||||
<additionalparam> from the maven-javadoc-plugin configuration above seems to
|
||||
override the one from the parent pom. -->
|
||||
<reporting>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<configuration>
|
||||
<additionalparam>-XDignore.symbol.file -Xdoclint:-html</additionalparam>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<configuration>
|
||||
<additionalparam>-XDignore.symbol.file -Xdoclint:-html</additionalparam>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
1
.m2/com/google/guava/guava/21.0/guava-21.0.pom.sha1
Normal file
1
.m2/com/google/guava/guava/21.0/guava-21.0.pom.sha1
Normal file
@@ -0,0 +1 @@
|
||||
fe4fa08a8c0897f9896c7e278fb397ede4a2feed
|
||||
@@ -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:21 CST 2026
|
||||
guava-28.2-android.pom>aliyunmaven=
|
||||
guava-28.2-android.jar>aliyunmaven=
|
||||
@@ -0,0 +1 @@
|
||||
e11db6e27f5d1ec19826848a865c496c798398fa
|
||||
252
.m2/com/google/guava/guava/28.2-android/guava-28.2-android.pom
Normal file
252
.m2/com/google/guava/guava/28.2-android/guava-28.2-android.pom
Normal file
@@ -0,0 +1,252 @@
|
||||
<?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">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>guava-parent</artifactId>
|
||||
<version>28.2-android</version>
|
||||
</parent>
|
||||
<artifactId>guava</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<name>Guava: Google Core Libraries for Java</name>
|
||||
<description>
|
||||
Guava is a suite of core and expanded libraries that include
|
||||
utility classes, google's collections, io classes, and much
|
||||
much more.
|
||||
</description>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>failureaccess</artifactId>
|
||||
<version>1.0.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>listenablefuture</artifactId>
|
||||
<version>9999.0-empty-to-avoid-conflict-with-guava</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.code.findbugs</groupId>
|
||||
<artifactId>jsr305</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.checkerframework</groupId>
|
||||
<artifactId>checker-compat-qual</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.errorprone</groupId>
|
||||
<artifactId>error_prone_annotations</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.j2objc</groupId>
|
||||
<artifactId>j2objc-annotations</artifactId>
|
||||
</dependency>
|
||||
<!-- TODO(cpovirk): does this comment belong on the <dependency> in <profiles>? -->
|
||||
<!-- TODO(cpovirk): want this only for dependency plugin but seems not to work there? Maven runs without failure, but the resulting Javadoc is missing the hoped-for inherited text -->
|
||||
</dependencies>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<configuration>
|
||||
<archive>
|
||||
<manifestEntries>
|
||||
<Automatic-Module-Name>com.google.common</Automatic-Module-Name>
|
||||
</manifestEntries>
|
||||
</archive>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<extensions>true</extensions>
|
||||
<groupId>org.apache.felix</groupId>
|
||||
<artifactId>maven-bundle-plugin</artifactId>
|
||||
<version>2.5.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>bundle-manifest</id>
|
||||
<phase>process-classes</phase>
|
||||
<goals>
|
||||
<goal>manifest</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<instructions>
|
||||
<Export-Package>
|
||||
!com.google.common.base.internal,
|
||||
!com.google.common.util.concurrent.internal,
|
||||
com.google.common.*
|
||||
</Export-Package>
|
||||
<Import-Package>
|
||||
com.google.common.util.concurrent.internal,
|
||||
javax.annotation;resolution:=optional,
|
||||
javax.crypto.*;resolution:=optional,
|
||||
sun.misc.*;resolution:=optional
|
||||
</Import-Package>
|
||||
<Bundle-DocURL>https://github.com/google/guava/</Bundle-DocURL>
|
||||
</instructions>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
</plugin>
|
||||
<!-- TODO(cpovirk): include JDK sources when building testlib doc, too -->
|
||||
<plugin>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>unpack-jdk-sources</id>
|
||||
<phase>generate-sources</phase>
|
||||
<goals><goal>unpack-dependencies</goal></goals>
|
||||
<configuration>
|
||||
<includeArtifactIds>srczip</includeArtifactIds>
|
||||
<outputDirectory>${project.build.directory}/jdk-sources</outputDirectory>
|
||||
<silent>false</silent>
|
||||
<!-- Exclude module-info files (since we're using -source 8 to avoid other modules problems) and FileDescriptor (which uses a language feature not available in Java 8). -->
|
||||
<excludes>**/module-info.java,**/java/io/FileDescriptor.java</excludes>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<configuration>
|
||||
<!-- TODO(cpovirk): Move this to the parent after making jdk-sources available there. -->
|
||||
<!-- TODO(cpovirk): can we use includeDependencySources and a local com.oracle.java:jdk-lib:noversion:sources instead of all this unzipping and manual sourcepath modification? -->
|
||||
<!-- (We need JDK *sources*, not just -link, so that {@inheritDoc} works.) -->
|
||||
<sourcepath>${project.build.sourceDirectory}:${project.build.directory}/jdk-sources</sourcepath>
|
||||
|
||||
<!-- Passing `-subpackages com.google.common` breaks things, so we explicitly exclude everything else instead. -->
|
||||
<!-- excludePackageNames requires specification of packages separately from "all subpackages".
|
||||
https://issues.apache.org/jira/browse/MJAVADOC-584 -->
|
||||
<excludePackageNames>
|
||||
com.google.common.base.internal,com.google.common.base.internal.*,com.google.thirdparty.publicsuffix,com.google.thirdparty.publicsuffix.*,com.oracle.*,com.sun.*,java.*,javax.*,jdk,jdk.*,org.*,sun.*
|
||||
</excludePackageNames>
|
||||
<!-- Ignore some tags that are found in Java 11 sources but not recognized... under -source 8, I think it was? I can no longer reproduce the failure. -->
|
||||
<tags>
|
||||
<tag>
|
||||
<name>apiNote</name>
|
||||
<placement>X</placement>
|
||||
</tag>
|
||||
<tag>
|
||||
<name>implNote</name>
|
||||
<placement>X</placement>
|
||||
</tag>
|
||||
<tag>
|
||||
<name>implSpec</name>
|
||||
<placement>X</placement>
|
||||
</tag>
|
||||
<tag>
|
||||
<name>jls</name>
|
||||
<placement>X</placement>
|
||||
</tag>
|
||||
<tag>
|
||||
<name>revised</name>
|
||||
<placement>X</placement>
|
||||
</tag>
|
||||
<tag>
|
||||
<name>spec</name>
|
||||
<placement>X</placement>
|
||||
</tag>
|
||||
</tags>
|
||||
|
||||
<!-- TODO(cpovirk): Move this to the parent after making the package-list files available there. -->
|
||||
<!-- We add the link ourselves, both so that we can choose Java 9 over the version that -source suggests and so that we can solve the JSR305 problem described below. -->
|
||||
<detectJavaApiLink>false</detectJavaApiLink>
|
||||
<offlineLinks>
|
||||
<!-- We need local copies of some of these for 2 reasons: a User-Agent problem (https://stackoverflow.com/a/47891403/28465) and an SSL problem (https://issues.apache.org/jira/browse/MJAVADOC-507). If we choose to work around the User-Agent problem, we can go back to <links>, sidestepping the SSL problem. -->
|
||||
<!-- Even after we stop using JSR305 annotations in our own code, we'll want this link so that NullPointerTester's docs can link to @CheckForNull and friends... at least once we start using this config for guava-testlib. -->
|
||||
<offlineLink>
|
||||
<url>https://static.javadoc.io/com.google.code.findbugs/jsr305/3.0.1/</url>
|
||||
<location>${project.basedir}/javadoc-link/jsr305</location>
|
||||
</offlineLink>
|
||||
<offlineLink>
|
||||
<url>https://static.javadoc.io/com.google.j2objc/j2objc-annotations/1.1/</url>
|
||||
<location>${project.basedir}/javadoc-link/j2objc-annotations</location>
|
||||
</offlineLink>
|
||||
<!-- The JDK doc must be listed after JSR305 (and as an <offlineLink>, not a <link>) so that JSR305 "claims" javax.annotation. -->
|
||||
<offlineLink>
|
||||
<url>https://docs.oracle.com/javase/9/docs/api/</url>
|
||||
<location>https://docs.oracle.com/javase/9/docs/api/</location>
|
||||
</offlineLink>
|
||||
<!-- The Checker Framework likewise would claim javax.annotations, despite providing only a subset of the JSR305 annotations, so it must likewise come after JSR305. -->
|
||||
<offlineLink>
|
||||
<url>https://checkerframework.org/api/</url>
|
||||
<location>${project.basedir}/javadoc-link/checker-framework</location>
|
||||
</offlineLink>
|
||||
</offlineLinks>
|
||||
<links>
|
||||
<link>https://errorprone.info/api/latest/</link>
|
||||
</links>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-docs</id>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>generate-javadoc-site-report</id>
|
||||
<phase>site</phase>
|
||||
<goals><goal>javadoc</goal></goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>srczip-parent</id>
|
||||
<activation>
|
||||
<file>
|
||||
<exists>${java.home}/../src.zip</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>jdk</groupId>
|
||||
<artifactId>srczip</artifactId>
|
||||
<version>999</version>
|
||||
<scope>system</scope>
|
||||
<systemPath>${java.home}/../src.zip</systemPath>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>srczip-lib</id>
|
||||
<activation>
|
||||
<file>
|
||||
<exists>${java.home}/lib/src.zip</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>jdk</groupId>
|
||||
<artifactId>srczip</artifactId>
|
||||
<version>999</version>
|
||||
<scope>system</scope>
|
||||
<systemPath>${java.home}/lib/src.zip</systemPath>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<configuration>
|
||||
<!-- We need to point at the java.base subdirectory because Maven appears to assume that package foo.bar is located in foo/bar and not java.base/foo/bar when translating excludePackageNames into filenames to pass to javadoc. (Note that manually passing -exclude to javadoc appears to possibly not work at all for java.* types??) Also, referring only to java.base avoids a lot of other sources. -->
|
||||
<sourcepath>${project.build.sourceDirectory}:${project.build.directory}/jdk-sources/java.base</sourcepath>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
@@ -0,0 +1 @@
|
||||
8524e3a9ec839c335c75699514bc6dcb5b541778
|
||||
@@ -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:21 CST 2026
|
||||
listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom>aliyunmaven=
|
||||
listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar>aliyunmaven=
|
||||
@@ -0,0 +1 @@
|
||||
b421526c5f297295adef1c886e5246c39d4ac629
|
||||
@@ -0,0 +1,56 @@
|
||||
<?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">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>guava-parent</artifactId>
|
||||
<version>26.0-android</version>
|
||||
</parent>
|
||||
<artifactId>listenablefuture</artifactId>
|
||||
<version>9999.0-empty-to-avoid-conflict-with-guava</version>
|
||||
<name>Guava ListenableFuture only</name>
|
||||
<description>
|
||||
An empty artifact that Guava depends on to signal that it is providing
|
||||
ListenableFuture -- but is also available in a second "version" that
|
||||
contains com.google.common.util.concurrent.ListenableFuture class, without
|
||||
any other Guava classes. The idea is:
|
||||
|
||||
- If users want only ListenableFuture, they depend on listenablefuture-1.0.
|
||||
|
||||
- If users want all of Guava, they depend on guava, which, as of Guava
|
||||
27.0, depends on
|
||||
listenablefuture-9999.0-empty-to-avoid-conflict-with-guava. The 9999.0-...
|
||||
version number is enough for some build systems (notably, Gradle) to select
|
||||
that empty artifact over the "real" listenablefuture-1.0 -- avoiding a
|
||||
conflict with the copy of ListenableFuture in guava itself. If users are
|
||||
using an older version of Guava or a build system other than Gradle, they
|
||||
may see class conflicts. If so, they can solve them by manually excluding
|
||||
the listenablefuture artifact or manually forcing their build systems to
|
||||
use 9999.0-....
|
||||
</description>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-docs</id>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>generate-javadoc-site-report</id>
|
||||
<phase>site</phase>
|
||||
<goals><goal>javadoc</goal></goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
@@ -0,0 +1 @@
|
||||
1b77ba79f9b2b7dfd4e15ea7bb0d568d5eb9cb8d
|
||||
Reference in New Issue
Block a user