Skip to content
Freddy Priyatna edited this page May 3, 2018 · 16 revisions

In this page, we provide some information that should be useful for users who want to install and make use of morph-RDB from a Linux command line.

Do not forget to add a new file called config.properies in src/main/resources -> see example: https://github.com/oeg-upm/mappingpedia-engine/wiki/config.properties

Installing morph-RDB

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

cd morph-rdb

mvn install

Installing the modified version RML-Mapper from fpriyatna

git clone --recursive https://github.com/fpriyatna/RML-Mapper.git

cd RML-Mapper

git submodule update --init --recursive

git submodule foreach git pull origin master

bin/RML-Mapper

Installing mappingpedia-engine using git/maven

git clone https://github.com/oeg-upm/mappingpedia-engine

cd mappingpedia-engine

Installing mappingpedia-engine manually

  1. Create a new directory for the mappingpedia-engine files

    mkdir mappingpedia-engine

    cd mappingpedia-engine

  2. Download the library files used by mappingpedia-engine and unzip it

    wget https://github.com/oeg-upm/mappingpedia-engine/releases/download/v0.0.6/lib.zip

    unzip lib.zip

  3. Download the latest mappingpedia-engine jar file into the target subfolder (create it if not exists), modify the config.properties and rename it to mappingpedia-engine.jar mkdir target

    cd target

    wget https://github.com/oeg-upm/mappingpedia-engine/releases/download/v0.0.6/mappingpedia-engine-r2rml-0.0.6-SNAPSHOT.jar.original

    unlink mappingpedia-engine.jar

    ln -s https://github.com/oeg-upm/mappingpedia-engine/releases/download/v0.0.6/mappingpedia-engine-r2rml-0.0.6-SNAPSHOT.jar.original mappingpedia-engine.jar

    cd ..