Skip to content
anaigmo edited this page Feb 12, 2019 · 4 revisions

There are two different ways to install morph-RDB, using Git and Maven or manually.

Table of Contents

Using Git and Maven

The information provided here should be useful for users who want to install and make use of morph-RDB from a linux command line. In this case, you have to follow the following instructions:

  1. Clone the morph-RDB repository

    git clone https://github.com/oeg-upm/morph-rdb.git

  2. Package the project using Maven

    cd morph-rdb
    mvn clean package
    

    From Linux/MacOS:

    cp morph-rdb-dist/target/morph-rdb-dist-3.9.15.jar morph-examples/morph-rdb.jar

    From Windows:

    copy morph-rdb-dist\target\morph-rdb-dist-3.9.15.jar morph-examples\morph-rdb.jar

Manually

On Windows

In order to install morph-RDB in your computer, you must follow the following set of instructions:

  1. Create a new directory for the morph-RDB files

    md morph
    cd morph
    
  2. Download and extract the library files used by morph-RDB to the morph directory. The file can be found at https://github.com/oeg-upm/morph-rdb/archive/v3.9.14.zip

  3. Download the latest morph-RDB jar file (https://github.com/oeg-upm/morph-rdb/releases/download/v3.9.14/morph-rdb-dist-3.9.14.jar) into the morph directory and rename it to morph-rdb.jar

On Linux

In order to install morph-RDB in your computer, you must follow the following set of instructions:

  1. Create a new directory for the morph-RDB files

    mkdir morph
    cd morph
    
  2. Download the library files used by morph-RDB

    wget https://github.com/oeg-upm/morph-rdb/archive/v3.9.14.zip
    unzip lib.zip
    
  3. Download the latest morph-RDB jar file and rename it to morph-rbd.jar

    wget https://github.com/oeg-upm/morph-rdb/releases/download/v3.9.14/morph-rdb-dist-3.9.14.jar
    mv morph-rdb-dist-3.9.14.jar morph-rdb.jar
    unlink morph-rdb.jar
    ln -s morph-rdb-dist-3.9.14.jar morph-rdb.jar
    
Clone this wiki locally