Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 1.16 KB

File metadata and controls

39 lines (27 loc) · 1.16 KB

Contributing

Building

Obtain Git Submodules

The following dependencies require Git submodules to be initialized and updated. If you cloned the repository without the --recurse-submodules option, you need to initialize and update the submodules:

git submodule update --init --recursive

Installing Jython 3

You must install the jython-dev.jar to your local maven repository.

  1. Change directory to the cloned local Git repo: cd jython3.

  2. Build Jython 3: ant. That will produce the file jython3/dist/jython-dev.jar.

  3. Install the jython-dev.jar into your local maven repo (see this post):

    mvn install:install-file \
    -Dfile=./jython-dev.jar \
    -DgroupId="org.python" \
    -DartifactId="jython3" \
    -Dversion="0.0.1-SNAPSHOT" \
    -Dpackaging="jar" \
    -DgeneratePom=true

Installing IDE

  1. Change directory to com.ibm.wala.cast.lsp: cd com.ibm.wala.cast.lsp
  2. Build and install to your local Maven repo: mvn install

Building WALA/ML

Build and install to your local Maven repo: mvn install