jasonray / guava-exploratory

guava-exploratory

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Overview

Working through guava http://mvnrepository.com/artifact/com.google.guava

Note on gradle

The build scripts are built around gradle. You can install gradle or use the provided version.

To install using brew, run brew install gradle.

To install manually, goto gradle.

To use the provided version, instead of running gradle, run ./g

Opening in Eclipse

If you use Eclipse, the gradle scripts are nice enough to create your project and classpath files.

The first time you open the project, first create the eclipse project files:

gradle eclipse

Now you can import the project into eclipse.

If you change dependencies, update the classpath:

gradle cleanEclipseClasspath eclipseClasspath

How to Run, Method 1

Compile

To compile:

gradle fatjar

Run

java -cp build/libs/jar-starterkit.jar jayray.net.hello.HelloWorld

How to Run, Method 2

Compile

To compile:

gradle installApp

Run

build/install/jar-starterkit/bin/jar-starterkit

About

guava-exploratory


Languages

Language:Shell 58.1%Language:Java 36.0%Language:Groovy 5.9%