blob: f6b5992d72dfc95021f93361cc0c2052c1485c05 [file] [log] [blame]
Bjorn Bringert1d580d02012-05-07 16:50:46 +01001Guava: Google Core Libraries for Java
2=====================================
3
Paul Duffin7dd25272015-01-22 16:04:43 +00004Requires JDK 1.6 or higher (as of 12.0).
Bjorn Bringert1d580d02012-05-07 16:50:46 +01005
6Project page:
7 http://guava-libraries.googlecode.com
8
9Report a defect or feature request here:
10 http://code.google.com/p/guava-libraries/issues/entry
11
12Ask "how-to" and "why-didn't-it-work" questions at:
13 http://www.stackoverflow.com/questions/ask (use the "guava" tag)
14
15For open-ended questions and discussion:
16 http://groups.google.com/group/guava-discuss
17
18Subscribe to project updates in your feed reader:
19 http://code.google.com/feeds/p/guava-libraries/updates/basic
20
21IMPORTANT WARNINGS
22------------------
23
241. APIs marked with the @Beta annotation at the class or method level
25are subject to change. They can be modified in any way, or even
26removed, at any time. If your code is a library itself (i.e. it is
27used on the CLASSPATH of users outside your own control), you should
28not use beta APIs, unless you repackage them (e.g. using ProGuard).
29
Paul Duffin3ecfa412015-05-29 15:33:20 +0100302. Deprecated non-beta APIs will be removed two years after the
Bjorn Bringert1d580d02012-05-07 16:50:46 +010031release in which they are first deprecated. You must fix your
32references before this time. If you don't, any manner of breakage
33could result (you are not guaranteed a compilation error).
34
Paul Duffin3ecfa412015-05-29 15:33:20 +0100353. Serialized forms of ALL objects are subject to change unless noted
36otherwise. Do not persist these and assume they can be read by a
37future version of the library.
Bjorn Bringert1d580d02012-05-07 16:50:46 +010038
394. Our classes are not designed to protect against a malicious caller.
40You should not use them for communication between trusted and
41untrusted code.
42
Paul Duffin3ecfa412015-05-29 15:33:20 +0100435. We unit-test and benchmark the libraries using only OpenJDK 1.7 on
Bjorn Bringert1d580d02012-05-07 16:50:46 +010044Linux. Some features, especially in com.google.common.io, may not work
45correctly in other environments.
46