Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.12 KB

CONTRIBUTING.md

File metadata and controls

36 lines (27 loc) · 1.12 KB

Contributing

Building

Installing Jython 3

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

  1. Clone the Jython 3 Git repo: git clone https://github.com/ponder-lab/jython3.git.

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

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

  4. 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. Clone the IDE repository.
  2. Change directory to com.ibm.wala.cast.lsp: cd com.ibm.wala.cast.lsp
  3. Build and install to your local Maven repo: mvn install

Building WALA/ML

  1. Clone the WALA/ML repository.
  2. Build and install to your local Maven repo: mvn install