vaibhavbsharma / WALA-start

a basic Gradle configuration to get started with WALA

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WALA Starter Kit

Introduction

This is a small example project to help in getting started with the WALA program analysis framework. You can clone and build this project to get WALA installed, and then modify it to suit your own needs.

Requirements

Requirements are:

  • Java 8
  • The Gradle build tool

On Mac OS X, you can install these requirements by installing Homebrew and then running:

brew cask install java
brew install gradle

If you'd prefer to stick with Java 7, everything should work fine. Just edit the line sourceCompatibility = 1.8 in build.gradle to read sourceCompatibility = 1.7.

Installation

Clone the repository, and then run:

gradle compileJava

This will pull in the WALA jars and build the sample code.

Example analyses

We plan to add more examples soon, like examples of doing Android or JavaScript analysis.

License

All code is available under the Eclipse Public License.

About

a basic Gradle configuration to get started with WALA

License:Eclipse Public License 1.0


Languages

Language:Java 99.7%Language:Python 0.3%