-
Notifications
You must be signed in to change notification settings - Fork 1
Home
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
git clone https://github.com/oeg-upm/morph-rdb.git
cd morph-rdb
mvn install
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
git clone https://github.com/oeg-upm/mappingpedia-engine
cd mappingpedia-engine
-
Create a new directory for the mappingpedia-engine files
mkdir mappingpedia-engine
cd mappingpedia-engine
-
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
-
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 ..