Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • GIT
  • JAVA

  • ANT
    • https://ant.apache.org/
    • Apache Ant is a Java library and command-line tool whose mission is to drive processes described in build files as targets and extension points dependent upon each other. The main known usage of Ant is the build of Java applications. Ant supplies a number of built-in tasks allowing to compile, assemble, test and run Java applications. Ant can also be used effectively to build non Java applications, for instance C or C++ applications. More generally, Ant can be used to pilot any type of process which can be described in terms of targets and tasks.
    • https://ant.apache.org/bindownload.cgi  – download instructions for your system
      1. First download the apache ant library (use documentation above as reference and extract)
      2. sudo apt-get install ant
      3. which ant
        1. copy the resulting directory
      4. In your Linux machine's home directory run: sudo nano .bashrc and add the following lines
        1. export ANT_OPTS="-Xmx256M"
        2. export ANT_HOME="DIRECTORY WHERE ANT IS INSTALLED"
      5. Go to your local DOME git directory

      6. sudo ant compile-client

      7. sudo ant dist-client

      8. sudo ant run-client

...