• Home
Name Date Size #Lines LOC

..--

guava/03-May-2024-102,52055,077

guava-bootstrap/03-May-2024-8358

guava-gwt/03-May-2024-26,01314,336

guava-testlib/03-May-2024-22,92114,269

guava-tests/03-May-2024-208,030185,919

.classpathD03-May-2024298 87

.gitignoreD03-May-20244 21

.projectD03-May-2024364 1817

AUTHORSD03-May-202452 54

Android.mkD03-May-20241 KiB3312

CONTRIBUTORSD03-May-20249 21

COPYINGD03-May-202411.1 KiB203169

CleanSpec.mkD03-May-20242.2 KiB500

MODULE_LICENSE_APACHE2D03-May-20240

NOTICED03-May-202411.1 KiB203169

READMED03-May-20241.6 KiB4733

README.androidD03-May-2024540 1511

README.mavenD03-May-20241.2 KiB3026

build.gradleD03-May-2024164 1411

mvn-deploy.shD03-May-20241.4 KiB4121

pom.xmlD03-May-20241.9 KiB6058

README

1Guava: Google Core Libraries for Java
2=====================================
3
4Requires JDK 1.5 or higher.
5
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
302. Deprecated non-beta APIs will be removed eighteen months after the
31release 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
353. Serialized forms of ALL objects are subject to change. Do not
36persist these and assume they can be read by a future version of the
37library.
38
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
435. We unit-test and benchmark the libraries using only OpenJDK 1.6 on
44Linux. Some features, especially in com.google.common.io, may not work
45correctly in other environments.
46
47

README.android

1URL: http://code.google.com/p/guava-libraries/source/checkout
2Version: v11.0.2
3License: Apache 2
4Description: "Guava: Google Core Libraries for Java 1.5"
5
6Local Modifications:
7   Commented out use of the non-public sun.misc.Unsafe
8   from guava/src/com/google/common/primitives/UnsignedBytes.java
9   Look for "BEGIN/END android-changed" markers.
10
11Guava-libraries are a grab bag of utility libraries published by Google as
12open source, including among other things the Google collections libraries.
13
14This code is built as a static library.
15

README.maven

1These folders host the maven metadata which are used to
2build release binaries for hosting in the central maven
3repositories.  These are not considered the "canonical"
4build, but are maintained seperately by (a) volunteer(s)
5with an interest in easy use of Guava by the Maven build
6system.
7
8As a convenience, these folders have been set up to
9provide alternate packaging of the sub-pmodules, which
10correspond to their respective java packages, with
11sources symbolically linked back to the main project.
12This will work to allow command-line builds on MacOS X
13or other Unix platforms which support symbolic linking,
14but is not known to work on Windows platforms.
15(Obviously the deployed binaries in maven repostories
16will work fine on any compliant JVM).
17
18The maintainers of these metadata have used M2Eclipse
19to import these projects directly into Eclipse.  Please
20remember that this codebase uses @Override annotations
21on methods which implement an interface method, and
22therefore require a JDK 1.6 (or newer 1.5 with the
23appropriate fix) to support this behaviour.  Executing
24Maven with an appropriate JAVA_HOME env is sufficient,
25and these metadata do not have toolchain restrictions
26currently set up.
27
28Christian
29cgruber@google.com
30