皇上,还记得我吗?我就是1999年那个Linux伊甸园啊-----24小时滚动更新开源资讯,全年无休!

Guava 27.0.1 发布,Google 的 Java 核心工具库

Guava 27.0.1 发布了,Guava 是 Google 的一个开源项目,包含许多 Google 核心 Java 常用库,如:集合 [collections] 、缓存 [caching] 、原生类型支持 [primitives support] 、并发库 [concurrency libraries] 、通用注解 [common annotations] 、字符串处理 [string processing] 与 I/O 等。

Maven

<dependency>
  <groupId>com.google.guava</groupId>
  <artifactId>guava</artifactId>
  <version>27.0.1-jre</version>
  <!-- or, for Android: -->
  <version>27.0.1-android</version>
</dependency>

Javadoc

JDiff

更新日志

  • 修复了一个 issue,即只应包含在 failureaccess 中的类(Guava 的一个依赖项)也包含在主 Guava jar 中。(4d4a676)
  • 更新 Guava 依赖于 1.0.1 的 failureaccess 版本,其中包括 OSGi 元数据。(7aae5f3)

发布说明:https://github.com/google/guava/releases/tag/v27.0.1

转自 https://www.oschina.net/news/101969/guava-27-0-1-released