Difference between revisions of "Protege5DevDocs"

From Protege Wiki
Jump to: navigation, search
(Created page with "== Protege Desktop 5.x Developer Documentation == This page is a top-level entry point for all developer documentation related to the Protege Desktop application, versions 5....")
 
(initial page creation)
Line 1: Line 1:
 +
__TOC__<br />
 
== Protege Desktop 5.x Developer Documentation ==
 
== Protege Desktop 5.x Developer Documentation ==
  
 
This page is a top-level entry point for all developer documentation related to the Protege Desktop application, versions 5.0 and above.
 
This page is a top-level entry point for all developer documentation related to the Protege Desktop application, versions 5.0 and above.
 +
  
 
=== Building from source  ===
 
=== Building from source  ===
 +
Details the steps necessary to download the Protege Desktop source code, and build a distribution from those sources.
 +
 +
To follow this step-by-step guide, you must have [http://maven.apache.org/ Maven] and [http://git-scm.com/ Git] installed.
 +
 +
* Checkout the Protege Desktop source code, i.e., "git clone https://github.com/protegeproject/protege.git protege".
 +
* Change into the protege directory.
 +
* Type mvn clean install.
 +
 +
Once the build completes, a usable Protege Desktop installation will have been created in:
 +
 +
protege/protege-distribution/target/protege-distribution-${version}-bin/Protege
 +
 +
Use the run.bat or run.sh scripts to launch Protege Desktop.
 +
 +
 +
=== Building with Eclipse and other IDEs ===
 +
We would welcome contributions from the community for setting up development environments other than Eclipse.
 +
 +
* [[CompileProtege5InEclipseWithMaven|Building with Eclipse]]
 +
  
 
=== Client-server ===
 
=== Client-server ===
 
* [[Protege_5_Development_Environment|Setting up a development environment for the OWL Ontology Server]]
 
* [[Protege_5_Development_Environment|Setting up a development environment for the OWL Ontology Server]]

Revision as of 17:25, October 4, 2013


Protege Desktop 5.x Developer Documentation

This page is a top-level entry point for all developer documentation related to the Protege Desktop application, versions 5.0 and above.


Building from source

Details the steps necessary to download the Protege Desktop source code, and build a distribution from those sources.

To follow this step-by-step guide, you must have Maven and Git installed.

Once the build completes, a usable Protege Desktop installation will have been created in:

protege/protege-distribution/target/protege-distribution-${version}-bin/Protege

Use the run.bat or run.sh scripts to launch Protege Desktop.


Building with Eclipse and other IDEs

We would welcome contributions from the community for setting up development environments other than Eclipse.


Client-server