https://github.com/protegeproject/mapping-master-project
Project to build Mapping Master-related components
https://github.com/protegeproject/mapping-master-project
Last synced: about 1 month ago
JSON representation
Project to build Mapping Master-related components
- Host: GitHub
- URL: https://github.com/protegeproject/mapping-master-project
- Owner: protegeproject
- Created: 2015-07-24T01:03:35.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2023-10-19T04:22:50.000Z (over 1 year ago)
- Last Synced: 2024-08-02T12:42:08.216Z (9 months ago)
- Size: 3.91 KB
- Stars: 3
- Watchers: 9
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-starred - protegeproject/mapping-master-project - Project to build Mapping Master-related components (others)
README
## Mapping Master Build Project
This project contains a Maven POM that builds Mapping Master-related components.
Currently it builds the [core Mapping Master](https://github.com/protegeproject/mapping-master.git) project,
the [Mapping Master Itegration Tests](https://github.com/protegeproject/mapping-master-integration-tests.git) project,
and the [Cellfie Plugin](https://github.com/protegeproject/cellfie-plugin.git) project.#### Building
To run the build process in this project, you must have the following items installed:
+ [Java 11](https://www.oracle.com/java/technologies/downloads/archive/) or later
+ A tool for checking out a [Git](http://git-scm.com/) repository
+ Apache's [Maven](http://maven.apache.org/index.html)Create a suitable local directory and then clone the Mapping Master-related projects as follows:
git clone https://github.com/protegeproject/mapping-master.git
git clone https://github.com/protegeproject/mapping-master-integration-tests.git
git clone https://github.com/protegeproject/mapping-master-example.git
git clone https://github.com/protegeproject/cellfie-plugin.git
git clone https://github.com/protegeproject/mapping-master-project.gitChange into the Mapping Master project directory:
cd mapping-master-project
And then build everything with Maven:
mvn clean install
The Mapping Master integration tests can take quite a while to run. You can skip them as follows:
mvn -DskipTests=true clean install
Documentation for Mapping Master can be found [here](https://github.com/protegeproject/mapping-master/wiki).
Documentation for the Cellfie plugin can be found [here](https://github.com/protegeproject/cellfie-plugin/wiki).