07 January, 2014

Google Guava

Hi Friends,

I know many of you are familiar with this word but someone is very new just like me.
I search this stuff in google and found that its really amazing and can be useful in our programming life.

So first question will come to your mind that what is "Google Guava" ?
So basically "Google Guava" is nothing but its utilities for working with java collection.

To start work with Gauva, you need to have java 1.6 or higher version installed in your machine.


How to install ? 

1) download it from https://code.google.com/p/guava-libraries/
2)  Once jar file downloaded, just put it into your IDE external library (Or in classpath)
3) you can find other API docs on http://docs.guava-libraries.googlecode.com/git-history/release/javadoc/index.html


How to build ?

You can use gradle or maven build tool to build the guava project.
To work with maven, you need to insert below code in your pom.xml file.

<dependency>
       <groupId>com.google.guava</groupId>
       <artifactId>guava</artifactId>
        <version>14.0</version>
</dependency>




Popular Posts

Featured Post

Liferay 7.3 compatibility matrix

Compatibility Matrix Liferay's general policy is to test Liferay Portal CE against newer major releases of operating systems, open s...